I'm working on a project that makes really heavy use of the javax.script.* packages. I have a situation where I would like to create JavaScript objects that extend an Abstract Java Class, much like you can use Invocable.getInterface to make JavaScript objects that implement Java interfaces. Is this possible? And, if so, how do you do it?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Unless you want to go the route of generating bytecode at runtime (using BCEL as below) then no. You can do it with interfaces using proxy classes but there is no equivalent for abstract classes.

If you really want to try BCEL, your best strategy is to do this:

  1. Write a method that uses BCEL to generate a byte[] of bytecode for a new class that extends the abstract class and delegates every abstract method to JavaScript.
  2. Define a naming convention that relates abstract classes to the wrapper, e.g. foo.MyAbstractClass corresponds to foo.MyAbstractClassDynamicLangWrapper.
  3. Roll a ClassLoader that implements findClass to recognize that naming convention and to generate the class bytes and calls defineClass
  4. Make sure your scripting language uses your custom classloader to resolve class names in scripts. I think in Rhino you use setApplicationClassLoader but I'm not sure.
link|improve this answer
That sounds nasty. I think I'll come up with another solution, if that's the case. – Jeremy Privett Jun 28 '11 at 7:00
feedback

Yes, you can; previous poster is wrong. See the documentation for JavaAdapter.

link|improve this answer
Unfortunately, I'm using the built-in stuff in the javax.script namespace which doesn't expose all of the underlying Rhino objects. My question was pretty specific to that situation, but this is still a somewhat useful answer. – Jeremy Privett Jul 13 '11 at 5:45
Actually, this is exposed in the javascript side and should still work with javax.script – Michael Deardeuff Sep 7 '11 at 3:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.