This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[gui] Patch: javax.swing.SwingConstants
- From: Michael Koch <konqueror at gmx dot de>
- To: java-patches at gcc dot gnu dot org
- Date: Sat, 5 Jun 2004 17:22:17 +0200
- Subject: [gui] Patch: javax.swing.SwingConstants
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi list,
I just commited the attached patch to java-gui-branch to complete
javax.swing.SwingConstants.
Michael
2004-06-05 Michael Koch <konqueror@gmx.de>
* javax/swing/SwingConstants.java
(NEXT): New constant.
(PREVIOUS): Likewise.
- --
Homepage: http://www.worldforge.org/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)
iD8DBQFAweUrWSOgCCdjSDsRAjy/AJ9aPoZo3KaP3p3yDmE5Jnw/AGshSgCfWNxF
MvI5ayoAQ7bVO96OZUnMZyA=
=Q642
-----END PGP SIGNATURE-----
Index: javax/swing/SwingConstants.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/SwingConstants.java,v
retrieving revision 1.3
diff -u -b -B -r1.3 SwingConstants.java
--- javax/swing/SwingConstants.java 12 Oct 2003 13:20:49 -0000 1.3
+++ javax/swing/SwingConstants.java 5 Jun 2004 15:19:22 -0000
@@ -60,5 +60,15 @@
int LEADING = 10;
int TRAILING = 11;
+
+ /**
+ * @since 1.4
+ */
+ int NEXT = 12;
+
+ /**
+ * @since 1.4
+ */
+ int PREVIOUS = 13;
}