Java methods

Each Java method maps directly to a C++ method. The following code fragments illustrate how to call a method in a C++ proxy class:

mc.myVoidMethod();
String s1 = mc.myStringMethod(123);

// static field uses static method
String s2 = A_B_MyClass::myStaticStringField();