On Jun 30, 2011, at 0:17, Bill Janssen <jans...@parc.com> wrote: > Andi Vajda <va...@apache.org> wrote: > >> >> On Jun 29, 2011, at 22:06, Bill Janssen <jans...@parc.com> wrote: >> >>> Andi Vajda <va...@apache.org> 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. > > OK, I'll try the static method, then. What do you think about wrapping > protected methods of classes marked as Python-extensible?
Not much but I haven't given it much thought. At this point, I just go over public things... That code is in cpp.py and there may be more in there already about looking at all methods. Andi.. > > Bill