diff options
Diffstat (limited to 'libjava/classpath/java/awt/dnd/DragGestureRecognizer.java')
-rw-r--r-- | libjava/classpath/java/awt/dnd/DragGestureRecognizer.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libjava/classpath/java/awt/dnd/DragGestureRecognizer.java b/libjava/classpath/java/awt/dnd/DragGestureRecognizer.java index 07b822e..37fde91 100644 --- a/libjava/classpath/java/awt/dnd/DragGestureRecognizer.java +++ b/libjava/classpath/java/awt/dnd/DragGestureRecognizer.java @@ -38,6 +38,8 @@ exception statement from your version. */ package java.awt.dnd; +import gnu.classpath.NotImplementedException; + import java.awt.Component; import java.awt.Point; import java.awt.event.InputEvent; @@ -126,6 +128,7 @@ public abstract class DragGestureRecognizer implements Serializable } public void resetRecognizer() + throws NotImplementedException { throw new Error("not implemented"); } @@ -152,6 +155,7 @@ public abstract class DragGestureRecognizer implements Serializable } protected void fireDragGestureRecognized(int dragAction, Point p) + throws NotImplementedException { throw new Error("not implemented"); } |