This fixes a minor API comment issue in TableColumnModel.

2005-10-19  Roman Kennke  <[EMAIL PROTECTED]>

        * javax/swing/table/TableColumnModel.java:
        Fixed some minor API doc errors.

/Roman
Index: javax/swing/table/TableColumnModel.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/table/TableColumnModel.java,v
retrieving revision 1.8
diff -u -r1.8 TableColumnModel.java
--- javax/swing/table/TableColumnModel.java	13 Jul 2005 09:16:15 -0000	1.8
+++ javax/swing/table/TableColumnModel.java	19 Oct 2005 14:22:56 -0000
@@ -50,6 +50,7 @@
  * 
  * @author Andrew Selkirk
  */
+// FIXME: The API documentation in this class is incomplete.
 public interface TableColumnModel
 {
   /**
@@ -107,7 +108,7 @@
    * @throws IllegalArgumentException if <code>identifier</code> is 
    *         <code>null</code> or there is no column with that identifier.
    */
-  int getColumnIndex(Object columnIdentifier);
+  int getColumnIndex(Object identifier);
 
   /**
    * Returns the <code>TableColumn</code> at the specified index.
@@ -169,7 +170,6 @@
 
   /**
    * getSelectionModel
-   * @param column TableColumn
    */
   ListSelectionModel getSelectionModel();
 
_______________________________________________
Classpath-patches mailing list
Classpath-patches@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-patches

Reply via email to