Message1900

Author derbylittle
Recipients
Date 2007-10-06.13:59:41
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The error occurs when you try to call the java method from jython.

So for instance, in java:

public class MyClass{
    private int myValue;
    public int set(int value){myValue=value;}
}

and in jython:

myObject = MyClass()
myObject.set(5)

The call to set will not work, because the method was never added to jython wrapper of the java class.
History
Date User Action Args
2008-02-20 17:18:01adminlinkissue1789561 messages
2008-02-20 17:18:01admincreate