diff options
author | Michael Koch <konqueror@gmx.de> | 2003-03-02 19:24:49 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-03-02 19:24:49 +0000 |
commit | 98461c58558374f3ffaef5e4b231dff2c8b39131 (patch) | |
tree | 3894b9705ef6c7658709ba9a17339f75dad2f186 /libjava/java/awt/dnd | |
parent | b059c02a6440937fc7885cfadce908133b0f2e90 (diff) | |
download | gcc-98461c58558374f3ffaef5e4b231dff2c8b39131.zip gcc-98461c58558374f3ffaef5e4b231dff2c8b39131.tar.gz gcc-98461c58558374f3ffaef5e4b231dff2c8b39131.tar.bz2 |
2003-03-02 Michael Koch <konqueror@gmx.de>
* java/awt/List.java
(setMultipleSelections): Deprecated.
(delItem): Deprecated.
* java/awt/MenuComponent.java
(getPeer): Deprecated.
* java/awt/ScrollPane.java
(addNotify): getPeer() is deprecated. Use isDisplayable() instead.
* java/awt/dnd/MouseDragGestureRecognizer.java
(mouseClicked): Added comment.
(mousePressed): Added comment.
(mouseReleased): Added comment.
(mouseEntered): Added comment.
(mouseExited): Added comment.
(mouseDragged): Added comment.
(mouseMoved): Added comment.
* java/awt/event/KeyEvent.java
(KeyEvent): Deprecated.
(setModifiers): Deprecated.
From-SVN: r63672
Diffstat (limited to 'libjava/java/awt/dnd')
-rw-r--r-- | libjava/java/awt/dnd/MouseDragGestureRecognizer.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libjava/java/awt/dnd/MouseDragGestureRecognizer.java b/libjava/java/awt/dnd/MouseDragGestureRecognizer.java index a94c825..6b21b43 100644 --- a/libjava/java/awt/dnd/MouseDragGestureRecognizer.java +++ b/libjava/java/awt/dnd/MouseDragGestureRecognizer.java @@ -96,36 +96,36 @@ public abstract class MouseDragGestureRecognizer public void mouseClicked (MouseEvent e) { - // FIXME: implement this + // Do nothing in here by default. } public void mousePressed (MouseEvent e) { - // FIXME: implement this + // Do nothing in here by default. } public void mouseReleased (MouseEvent e) { - // FIXME: implement this + // Do nothing in here by default. } public void mouseEntered (MouseEvent e) { - // FIXME: implement this + // Do nothing in here by default. } public void mouseExited (MouseEvent e) { - // FIXME: implement this + // Do nothing in here by default. } public void mouseDragged (MouseEvent e) { - // FIXME: implement this + // Do nothing in here by default. } public void mouseMoved (MouseEvent e) { - // FIXME: implement this + // Do nothing in here by default. } } // class MouseDragGestureRecognizer |