Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an interface, EventHandler (OSGi EventAdmin), with a single method handleEvent(Event).

I have the following Javascript code:

importPackage(org.osgi.service.event)

obj =
{
    handleEvent: function(event)
    {
        // some code
    }
};

handler = new EventHandler(obj);

service.registerHandler(handler, topic);

The code is executed by Rhino (more specifically Rhino as built into JRE6, JSR-223 spec). service is a Java object bound to the script context where registerHandler first looks up the handler in a Map. This fails because the NativeObject "handler" doesn't have a hashCode() method.

Is there a reason a NativeObject is missing standard Java Object methods?

What's a way to work around this?

I'm using Rhino that comes with JRE6 (1.6R2).

share|improve this question

1 Answer

Your code isn't complete, but NativeObject looks more like a JavaScript object to me.

share|improve this answer
I updated code, only missing import statement. As I understand it, 'code'NativeObject is the Javascript representation of a Java object. EventHandler is an interface so the object created is a special object. Is there a way to create a Java object instead? – Dave H Oct 25 '11 at 12:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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