On Jun 29, 2011, at 22:06, Bill Janssen <[email protected]> wrote: > Andi Vajda <[email protected]> wrote: > >> Put everything into a class and call all the python stuff from there. > > I'd like to make the method on the Java class be static, so I'd like > that method to create an instance and call a protected or > package-private method that is implemented by the Python class. But > JCC doesn't seem to wrap non-public or static methods...?
Jcc wraps all public methods whose signature contains only classes or types in the set of classes to be wrapped, including static ones. Andi.. > > Bill
