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
This commit is contained in:
Michael Koch 2003-03-02 19:24:49 +00:00 committed by Michael Koch
parent b059c02a64
commit 98461c5855
6 changed files with 39 additions and 8 deletions

View file

@ -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