2

Rhino: How to access Java interface variables in Javascript implementation?

I expose a java interface for some other party to let them provide an implementation for the same in javascript.

public interface APIInterface{

    public static APIUtils util = new APIUtils();

    public ArrayList getAllObjects(Object aTransaction);
}

Javascript implementation:

/** Core Interface Method **/
new Object() {

  getAllObjects: function(tran) {
        tran.set(..); //OK  
        tran.set(..); //OK
        util.callSomeFunction(); //Fails here..Rhino doesn't understand util.. 
  }    

}

I want the javascript implementation of the interface to understand the interface variable util without having to pass it as an additional argument to the function or by adding it to the ScriptEngine. Is this technically possible?

1 Answer 1

1

For the interface...

package foo;
public interface Iface {
  String X = "Hello, World!";
  void invoke();
}

...static member¹ X can be accessed two ways.

1) Via the type:

var x = Packages.foo.Iface.X;

2) Via reflection:

var impl = new Packages.foo.Iface({
  invoke : function () {
    var x = this.getClass().getField("X").get(null);
    java.lang.System.out.println(x);
  }
});
impl.invoke();

Tested on Rhino 1.7R4.

¹All variables are implicitly public static final on interfaces.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.