I committed this patch:
2006-03-03 David Gilbert <[EMAIL PROTECTED]>
* javax/swing/event/TableColumnModelEvent.java: Reformatted.
Regards,
Dave
Index: javax/swing/event/TableColumnModelEvent.java
===================================================================
RCS file:
/sources/classpath/classpath/javax/swing/event/TableColumnModelEvent.java,v
retrieving revision 1.3
diff -u -r1.3 TableColumnModelEvent.java
--- javax/swing/event/TableColumnModelEvent.java 2 Jul 2005 20:32:50
-0000 1.3
+++ javax/swing/event/TableColumnModelEvent.java 3 Mar 2006 22:44:33
-0000
@@ -1,5 +1,5 @@
/* TableColumnModelEvent.java --
- Copyright (C) 2002, 2004 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2004, 2006, Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -46,60 +46,48 @@
* TableColumnModelEvent
* @author Andrew Selkirk
*/
-public class TableColumnModelEvent extends EventObject {
+public class TableColumnModelEvent extends EventObject
+{
- //-------------------------------------------------------------
- // Variables --------------------------------------------------
- //-------------------------------------------------------------
-
- /**
- * fromIndex
- */
- protected int fromIndex = 0;
-
- /**
- * toIndex
- */
- protected int toIndex = 0;
-
-
- //-------------------------------------------------------------
- // Initialization ---------------------------------------------
- //-------------------------------------------------------------
-
- /**
- * Constructor TableColumnModelEvent
- * @param source Source TableColumnModel
- * @param from From index
- * @param to To index
- */
- public TableColumnModelEvent(TableColumnModel source,
- int from, int
to) {
- super(source);
- fromIndex = from;
- toIndex = to;
- } // TableColumnModelEvent()
-
-
- //-------------------------------------------------------------
- // Methods ----------------------------------------------------
- //-------------------------------------------------------------
-
- /**
- * getFromIndex.
- * @returns From index
- */
- public int getFromIndex() {
- return fromIndex;
- } // getFromIndex()
-
- /**
- * getToIndex.
- * @returns To index
- */
- public int getToIndex() {
- return toIndex;
- } // getToIndex()
+ /**
+ * fromIndex
+ */
+ protected int fromIndex = 0;
+
+ /**
+ * toIndex
+ */
+ protected int toIndex = 0;
+
+ /**
+ * Constructor TableColumnModelEvent
+ * @param source Source TableColumnModel
+ * @param from From index
+ * @param to To index
+ */
+ public TableColumnModelEvent(TableColumnModel source, int from, int to)
+ {
+ super(source);
+ fromIndex = from;
+ toIndex = to;
+ }
+
+ /**
+ * getFromIndex.
+ * @returns From index
+ */
+ public int getFromIndex()
+ {
+ return fromIndex;
+ }
+
+ /**
+ * getToIndex.
+ * @returns To index
+ */
+ public int getToIndex()
+ {
+ return toIndex;
+ }
-
-} // TableColumnModelEvent
+}
\ No newline at end of file