OSDN Git Service

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