Overriding a Java class from Python using JCC. Is that possible?

173 Views Asked by At

I'm using JCC to create a Python wrapper for a Java library and I need to override a method from a Java class inside the Python script. Is it possible? How can you do that if it is possible?

1

There are 1 best solutions below

1
On

you could create a proxy class in Python that calls the Java class. Then on the proxy class you can override whatever you need.