public class TestJNI 
{

  public native void myNative();

  public static void main(String args[]) 
  {
    TestJNI x = new TestJNI();
    x.myNative();
  }
}