From 0a57b9055cf15871dbd9f10f5356447cd3e88d82 Mon Sep 17 00:00:00 2001 From: David Gilbert Date: Sun, 5 Mar 2006 20:24:43 +0000 Subject: 2006-03-05 David Gilbert * javax/swing/plaf/ComboBoxUI.java: Fixed typo in class description, and corrected a bad API doc tag. ---------------------------------------------------------------------- --- ChangeLog | 5 +++++ javax/swing/plaf/ComboBoxUI.java | 14 +++++--------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index a11a676cf..6142d0bc4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-03-05 David Gilbert + + * javax/swing/plaf/ComboBoxUI.java: Fixed typo in class description, + and corrected a bad API doc tag. + 2006-03-05 David Gilbert * javax/swing/colorchooser/ColorSelectionModel.java: Reformatted and 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 JButton. - * - * @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 JComboBox whose focus traversability * is to be retrieved. * - * @returns true if c can receive + * @return true if c can receive * input focus, false otherwise. */ public abstract boolean isFocusTraversable(JComboBox c); + } -- cgit v1.2.1