This patch (committed) fixes a couple of minor API doc issues in the ComboBoxUI 
class:

2006-03-05  David Gilbert  <[EMAIL PROTECTED]>

        * javax/swing/plaf/ComboBoxUI.java: Fixed typo in class description,
        and corrected a bad API doc tag.

Regards,

Dave
Index: javax/swing/plaf/ComboBoxUI.java
===================================================================
RCS file: /sources/classpath/classpath/javax/swing/plaf/ComboBoxUI.java,v
retrieving revision 1.5
diff -u -r1.5 ComboBoxUI.java
--- javax/swing/plaf/ComboBoxUI.java    19 Oct 2005 14:20:10 -0000      1.5
+++ javax/swing/plaf/ComboBoxUI.java    5 Mar 2006 20:21:07 -0000
@@ -1,5 +1,5 @@
 /* ComboBoxUI.java --
-   Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 2002, 2003, 2006, Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -41,9 +41,7 @@
 
 /**
  * An abstract base class for delegates that implement the pluggable
- * look and feel for a <code>JButton</code>.
- *
- * @see javax.swing.JComboBox
+ * look and feel for a [EMAIL PROTECTED] JComboBox}.
  *
  * @author Andrew Selkirk
  * @author Sascha Brawer ([EMAIL PROTECTED])
@@ -57,8 +55,7 @@
   {
     // Nothing to do here.
   }
-  
-  
+    
   /**
    * Sets the visibility of the popup button.
    *
@@ -70,7 +67,6 @@
    */
   public abstract void setPopupVisible(JComboBox c, boolean visible);
 
-
   /**
    * Determines whether the popup button is currently visible.
    *
@@ -82,15 +78,15 @@
    */
   public abstract boolean isPopupVisible(JComboBox c);
   
-  
   /**
    * Determines whether the combo box can receive input focus.
    *
    * @param c <code>JComboBox</code> whose focus traversability
    *        is to be retrieved.
    *
-   * @returns <code>true</code> if <code>c</code> can receive
+   * @return <code>true</code> if <code>c</code> can receive
    *          input focus, <code>false</code> otherwise.
    */
   public abstract boolean isFocusTraversable(JComboBox c);
+  
 }

Reply via email to