Just fixed some of those little yellow exclamation marks Eclipse was
showing.  A few links in API docs and 2 unused imports.

2005-10-12  Anthony Balkissoon  <[EMAIL PROTECTED]>

        * javax/swing/JTable.java: Fixed some API docs and unused imports.

--Tony
Index: javax/swing/JTable.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/JTable.java,v
retrieving revision 1.51
diff -u -r1.51 JTable.java
--- javax/swing/JTable.java	7 Oct 2005 14:54:10 -0000	1.51
+++ javax/swing/JTable.java	12 Oct 2005 19:55:16 -0000
@@ -45,8 +45,6 @@
 import java.awt.Rectangle;
 import java.awt.event.ActionEvent;
 import java.awt.event.ActionListener;
-import java.awt.event.KeyAdapter;
-import java.awt.event.KeyEvent;
 import java.beans.PropertyChangeEvent;
 import java.beans.PropertyChangeListener;
 import java.text.DateFormat;
@@ -86,7 +84,7 @@
    * Handles property changes from the <code>TableColumn</code>s of this
    * <code>JTable</code>.
    *
-   * More specifically, this triggers a [EMAIL PROTECTED] #revalidate} call if the
+   * More specifically, this triggers a [EMAIL PROTECTED] #revalidate()} call if the
    * preferredWidth of one of the observed columns changes.
    */
   class TableColumnPropertyChangeHandler implements PropertyChangeListener
@@ -393,7 +391,7 @@
    * property when the [EMAIL PROTECTED] #dataModel} property is changed. 
    *
    * @see #setModel(TableModel)
-   * @see #createColumnsFromModel()
+   * @see #createDefaultColumnsFromModel()
    * @see #setColumnModel(TableColumnModel)
    * @see #setAutoCreateColumnsFromModel(boolean)
    * @see #getAutoCreateColumnsFromModel()
@@ -516,7 +514,7 @@
   /**
    * Whether or not drag-and-drop is enabled on this table.
    *
-   * @see #setDragEnabled()
+   * @see #setDragEnabled(boolean)
    * @see #getDragEnabled()
    */
   private boolean dragEnabled;
_______________________________________________
Classpath-patches mailing list
Classpath-patches@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-patches

Reply via email to