Message262

Author bckfnn
Recipients
Date 2001-02-14.22:36:49
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Fixed as good as it can be fixed. If an overriden method is called from the java ctor, the python ctor will be called without any arguments. If the python ctor expect arguments, the java class have to call the __initProxy__(Object[]) method.

   ((PyProxy) this).__initProxy__(new Object[] {
         "A string",
         new Integer(42),
   }); 
History
Date User Action Args
2008-02-20 17:16:48adminlinkissue229363 messages
2008-02-20 17:16:48admincreate