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?
|
feedback
|
|
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:
| ||||
feedback
|
|
Yes, you can; previous poster is wrong. See the documentation for JavaAdapter. | |||||
feedback
|