From: <bc...@wo...> - 2001-05-14 22:10:51
|
[Robert] >It looks like Java field access is outside the proxy, but I'm >afraid I've overlooked something. Is it true that >fields are outside of proxy making protected field=private >in Jython even when subclassing? That is unfortunately correct. Protected fields in java super classes are not accesible in python subclasses. The workarounds so far are adding getter methods to the java class or using respectJavaAccessibility. regards, finn |