The native modifier applies only to methods.
The native modifier indicates that a method is implemented in platform-dependent code.
A native method's body must be a semicolon (;) indicating that the implementation is omitted.
class NativeExample {
nativevoid doSomethingLocal(int i);
static {
System.loadLibrary("MyNativeLib");
}
}