org.python.core
public interface PyProxy
Method Summary | |
---|---|
abstract PyInstance | _getPyInstance()
Return the associated PyInstance instance. |
abstract PySystemState | _getPySystemState()
Return the associated system state. |
abstract void | _setPyInstance(PyInstance proxy)
Associate an PyInstance with this proxy instance.
|
abstract void | _setPySystemState(PySystemState ss)
Associate an system state with this proxy instance.
|
abstract void | __initProxy__(Object[] args)
Initialize the proxy instance. |
In some situations is it necesary to call the __initProxy__ method from the java superclass ctor before the ctor makes call to methods that is overriden in python.
In most sitation the __initProxy__ is called automticly by the jython runtime.