NormalBreakpoint.java 713 B

123456789101112131415161718192021222324252627282930
  1. // NormalBreakpoint.java - a "normal" breakpoint in the interpreter
  2. /* Copyright (C) 2007 Free Software Foundation
  3. This file is part of libgcj.
  4. This software is copyrighted work licensed under the terms of the
  5. Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
  6. details. */
  7. package gnu.gcj.jvmti;
  8. /**
  9. * This class represents a "normal" breakpoint in the interpreter.
  10. * When the interpreter hits this breakpoint type, it will send out
  11. * a JVMTI breakpoint notification.
  12. *
  13. * @author Keith Seitz (keiths@redhat.com)
  14. */
  15. public class NormalBreakpoint
  16. extends Breakpoint
  17. {
  18. public NormalBreakpoint (long method, long id)
  19. {
  20. super (method, id);
  21. }
  22. public native void execute ();
  23. }