Message1559

Author mr_tines
Recipients
Date 2007-04-16.19:35:14
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
* Backplane.py

from java import lang

class Backplane(lang.Object):
  def performSetup(self, arg):
    "@sig public void performSetup(java.lang.String arg)"
    self.arg = arg

>>jythonc -p test -J "-Xlint:deprecation" Backplane.py
processing Backplane

Required packages:
  java.lang

Creating adapters:

Creating .java files:
  Backplane module
    Backplane extends java.lang.Object

Compiling .java to .class...
Compiling with args: [...]
0  .\jpywork\test\Backplane.java:84: warning: [deprecation] jgetattr(org.python.
core.PyProxy,java.lang.String) in org.python.core.Py has been deprecated
        PyObject inst = Py.jgetattr(this, "performSetup");
                          ^
1 warning
History
Date User Action Args
2008-02-20 17:17:48adminlinkissue1701748 messages
2008-02-20 17:17:48admincreate