jdk/src/java.desktop/share/classes/javax/swing/plaf/ComboBoxUI.java
changeset 26037 508779ce6619
parent 26013 83b99f14245f
parent 25859 3317bb8137f4
equal deleted inserted replaced
25992:e9b05e933ddd 26037:508779ce6619
    35  */
    35  */
    36 public abstract class ComboBoxUI extends ComponentUI {
    36 public abstract class ComboBoxUI extends ComponentUI {
    37 
    37 
    38     /**
    38     /**
    39      * Set the visibility of the popup
    39      * Set the visibility of the popup
       
    40      *
       
    41      * @param c a {@code JComboBox}
       
    42      * @param v a {@code boolean} determining the visibilty of the popup
    40      */
    43      */
    41     public abstract void setPopupVisible( JComboBox<?> c, boolean v );
    44     public abstract void setPopupVisible( JComboBox<?> c, boolean v );
    42 
    45 
    43     /**
    46     /**
    44      * Determine the visibility of the popup
    47      * Determine the visibility of the popup
       
    48      *
       
    49      * @param c a {@code JComboBox}
       
    50      * @return true if popup of the {@code JComboBox} is visible
    45      */
    51      */
    46     public abstract boolean isPopupVisible( JComboBox<?> c );
    52     public abstract boolean isPopupVisible( JComboBox<?> c );
    47 
    53 
    48     /**
    54     /**
    49      * Determine whether or not the combo box itself is traversable
    55      * Determine whether or not the combo box itself is traversable
       
    56      *
       
    57      * @param c a {@code JComboBox}
       
    58      * @return true if the given {@code JComboBox} is traversable
    50      */
    59      */
    51     public abstract boolean isFocusTraversable( JComboBox<?> c );
    60     public abstract boolean isFocusTraversable( JComboBox<?> c );
    52 }
    61 }