From: <bc...@wo...> - 2001-01-19 15:08:55
|
On Thu, 18 Jan 2001 17:27:39 -0500, you wrote: >How can you access Python classes / modules directly from Java? A python class can implement a java interface or java class by listing the java interface as a base class. Instances of such a python class can be passed to java code as a parameter and used as any other java class. In addition, the command "jythonc" can be be used to create a java class from a python module. Such a java class be used from a java program as a normal java class. Including in a "new" statement. regards. finn |