From: <bc...@wo...> - 2001-04-25 19:02:16
|
[Eric Freudenthal] >I would like to integrate some jython into a java source tree. Some of my >python modules will need to import classes defined in this project, and in >at least one case, I need to implement a jython class with multiple >inheritance from a java class and a java interface. How must I do this? See other post in the thread. >Finally, are jython objects serializable? Yes, but when reading a serialized stream you must use the org.python.util.PythonObjectInputStream instead of the normal ObjectInputStream class. This utility class will help when resolving python classes that subclass java classes. regards, finn |