2003-03-24 Michael Koch <konqueror@gmx.de>

* java/awt/Frame.java
	(DEFAULT_CURSOR): Fixed @deprecated tag.
	(setCursor): Fixed @deprecated tag.

From-SVN: r64779
This commit is contained in:
Michael Koch 2003-03-24 08:26:52 +00:00 committed by Michael Koch
parent 99010ccbb8
commit 228115acf4
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2003-03-24 Michael Koch <konqueror@gmx.de>
* java/awt/Frame.java
(DEFAULT_CURSOR): Fixed @deprecated tag.
(setCursor): Fixed @deprecated tag.
2003-03-24 Michael Koch <konqueror@gmx.de>
* java/beans/beancontext/BeanContextEvent.java:

View File

@ -60,7 +60,7 @@ public class Frame extends Window implements MenuContainer
/**
* Constant for the default cursor.
* Deprecated. replaced by <code>Cursor.DEFAULT_CURSOR</code> instead.
* @deprecated Replaced by <code>Cursor.DEFAULT_CURSOR</code> instead.
*/
public static final int DEFAULT_CURSOR = Cursor.DEFAULT_CURSOR;
@ -390,7 +390,7 @@ getCursorType()
*
* @param type The cursor type.
*
* @deprecated. Use <code>Component.setCursor(Cursor)</code> instead.
* @deprecated Use <code>Component.setCursor(Cursor)</code> instead.
*/
public void
setCursor(int type)