vote up 2 vote down star

It's easy to make objects available to Rhino from Java using ScriptableObject.putProperty, but is there a way to expose a top-level function? That is, can I make it so scripts in Rhino can call foo() and have that call out to Java code?

flag

71% accept rate

1 Answer

vote up 2 vote down check

Umm... yes, you can. Perhaps I'm not understanding your question correctly (what do you mean by "top-level function"?) but if you've exposed java object to Rhino, you can call its methods.

link|flag
1  
Sorry if I wasn't clear. While I can expose an object, which allows me to call foo.bar(), I'd ideally like to just call bar(). So, by 'top-level function' I mean a function that's a property of the Rhino Scope that's currently executing, if that makes more sense. – Thom Oct 9 at 20:32
Oh, I see. You can define a FunctionObject: mozilla.org/rhino/apidocs/… and associate it with global (or your current) scope via putProperty() – ChssPly76 Oct 9 at 20:57
Superb, that looks perfect. Thanks! – Thom Oct 9 at 21:14

Your Answer

Get an OpenID
or

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