Relative Content

Tag Archive for javajava-native-interfaceswig

How to set SWIG generated java proxy class as final

I am using SWIG to generate a Java wrapper for some C code. This C code has a structure that SWIG represents with the below Java proxy class. As one can see, this class can be extended given that it is not declared as final. How can one declare this class as final using SWIG (i.e. public final class Test)?