2004-06-05 Michael Koch <konqueror@gmx.de>

* javax/swing/SwingConstants.java
	(NEXT): New constant.
	(PREVIOUS): Likewise.

From-SVN: r82652
This commit is contained in:
Michael Koch 2004-06-05 15:19:52 +00:00 committed by Michael Koch
parent c6dd044144
commit 9fc3ed51d0
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2004-06-05 Michael Koch <konqueror@gmx.de>
* javax/swing/SwingConstants.java
(NEXT): New constant.
(PREVIOUS): Likewise.
2004-06-05 Michael Koch <konqueror@gmx.de>
* javax/swing/UIManager.java

View File

@ -60,5 +60,15 @@ public interface SwingConstants
int LEADING = 10;
int TRAILING = 11;
/**
* @since 1.4
*/
int NEXT = 12;
/**
* @since 1.4
*/
int PREVIOUS = 13;
}