summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Gilbert <david.gilbert@object-refinery.com>2006-03-05 20:24:43 +0000
committerDavid Gilbert <david.gilbert@object-refinery.com>2006-03-05 20:24:43 +0000
commit0a57b9055cf15871dbd9f10f5356447cd3e88d82 (patch)
treef9e97e3a135cf2cd6c53b8963cd268a69007e30e
parent793689d6095ef8eb832bd02f97d4fef864de6d8f (diff)
downloadclasspath-0a57b9055cf15871dbd9f10f5356447cd3e88d82.tar.gz
2006-03-05 David Gilbert <david.gilbert@object-refinery.com>
* javax/swing/plaf/ComboBoxUI.java: Fixed typo in class description, and corrected a bad API doc tag. ----------------------------------------------------------------------
-rw-r--r--ChangeLog5
-rw-r--r--javax/swing/plaf/ComboBoxUI.java14
2 files changed, 10 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index a11a676cf..6142d0bc4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2006-03-05 David Gilbert <david.gilbert@object-refinery.com>
+ * javax/swing/plaf/ComboBoxUI.java: Fixed typo in class description,
+ and corrected a bad API doc tag.
+
+2006-03-05 David Gilbert <david.gilbert@object-refinery.com>
+
* javax/swing/colorchooser/ColorSelectionModel.java: Reformatted and
added API docs all over.
diff --git a/javax/swing/plaf/ComboBoxUI.java b/javax/swing/plaf/ComboBoxUI.java
index 3e81ed75a..58f6e815c 100644
--- a/javax/swing/plaf/ComboBoxUI.java
+++ b/javax/swing/plaf/ComboBoxUI.java
@@ -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 @@ import javax.swing.JComboBox;
/**
* 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 {@link JComboBox}.
*
* @author Andrew Selkirk
* @author Sascha Brawer (brawer@dandelis.ch)
@@ -57,8 +55,7 @@ public abstract class ComboBoxUI extends ComponentUI
{
// Nothing to do here.
}
-
-
+
/**
* Sets the visibility of the popup button.
*
@@ -70,7 +67,6 @@ public abstract class ComboBoxUI extends ComponentUI
*/
public abstract void setPopupVisible(JComboBox c, boolean visible);
-
/**
* Determines whether the popup button is currently visible.
*
@@ -82,15 +78,15 @@ public abstract class ComboBoxUI extends ComponentUI
*/
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);
+
}