events.java 241 B

12345678910111213
  1. // Test JVMTI event notifications
  2. public class events
  3. {
  4. public static native void do_events_tests ();
  5. public static void main (String[] args)
  6. {
  7. System.out.println ("JVMTI event notification tests");
  8. do_events_tests ();
  9. }
  10. }