import multiple_inheritance_interfaces.*; import java.util.Arrays; public class multiple_inheritance_interfaces_runme { static { try { System.loadLibrary("multiple_inheritance_interfaces"); } catch (UnsatisfiedLinkError e) { System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e); System.exit(1); } } private static void checkBaseAndInterfaces(Class cls, boolean interfaceExpected, String base, String[] interfaces) { String[] expectedInterfaces = new String[interfaces.length]; for (int i=0; i