| org.python.core.ClassDictInit
All known Subclasses: org.python.modules.sets.Sets, com.ziclix.python.sql.util.BCP, com.ziclix.python.sql.PyConnection, org.python.core.PyString, org.python.modules.types, org.python.core.exceptions, org.python.modules.ArrayModule, org.python.modules.cPickle, org.python.core.PyTuple, org.python.modules._weakref, org.python.modules.errno, org.python.modules.math, org.python.modules.sha, org.python.modules.os, com.ziclix.python.sql.zxJDBC, com.ziclix.python.sql.PyCursor,
ClassDictInit | public interface ClassDictInit (Code) | | An empty tagging interface that can be used if a java class
want control over the class dict initialization.
When a java class implements this interface, it must also have
a method like:
public static void classDictInit(PyObject dict) { .. }
The method will be called when the class is initialized. The
method can then make changes to the class's __dict__ instance,
f.example be removing method that should not be avaiable in python
or by replacing some method with high performance versions.
|
|
|