Uses of Class
javax.swing.JComboBox
| Package | Description | 
|---|---|
| javax.swing | Provides a set of "lightweight" (all-Java language) components
 that, to the maximum degree possible, work the same on all platforms. | 
| javax.swing.plaf | Provides one interface and many abstract classes that Swing uses to provide
 its pluggable look-and-feel capabilities. | 
| javax.swing.plaf.basic | Provides user interface objects built according to the Basic look and feel. | 
| javax.swing.plaf.metal | Provides user interface objects built according to the Java look and feel
 (once codenamed Metal), which is the default look and feel. | 
| javax.swing.plaf.multi | Provides user interface objects that combine two or more look and feels. | 
- 
Uses of JComboBox in javax.swingConstructors in javax.swing with parameters of type JComboBox Constructor Description DefaultCellEditor(JComboBox<?> comboBox)Constructs aDefaultCellEditorobject that uses a combo box.
- 
Uses of JComboBox in javax.swing.plafMethods in javax.swing.plaf with parameters of type JComboBox Modifier and Type Method Description abstract booleanComboBoxUI. isFocusTraversable(JComboBox<?> c)Determine whether or not the combo box itself is traversableabstract booleanComboBoxUI. isPopupVisible(JComboBox<?> c)Determine the visibility of the popupabstract voidComboBoxUI. setPopupVisible(JComboBox<?> c, boolean v)Set the visibility of the popup
- 
Uses of JComboBox in javax.swing.plaf.basicFields in javax.swing.plaf.basic declared as JComboBox Modifier and Type Field Description protected JComboBox<Object>BasicComboBoxUI. comboBoxThe instance ofJComboBox.protected JComboBox<Object>BasicComboPopup. comboBoxThe instance ofJComboBox.Methods in javax.swing.plaf.basic with parameters of type JComboBox Modifier and Type Method Description booleanBasicComboBoxUI. isFocusTraversable(JComboBox<?> c)Determines if the JComboBox is focus traversable.booleanBasicComboBoxUI. isPopupVisible(JComboBox<?> c)Tells if the popup is visible or not.voidBasicComboBoxUI. setPopupVisible(JComboBox<?> c, boolean v)Hides the popup.Constructors in javax.swing.plaf.basic with parameters of type JComboBox Constructor Description BasicComboPopup(JComboBox<Object> combo)Constructs a new instance ofBasicComboPopup.
- 
Uses of JComboBox in javax.swing.plaf.metalFields in javax.swing.plaf.metal declared as JComboBox Modifier and Type Field Description protected JComboBox<Object>MetalComboBoxButton. comboBoxThe instance ofJComboBox.Methods in javax.swing.plaf.metal that return JComboBox Modifier and Type Method Description JComboBox<Object>MetalComboBoxButton. getComboBox()Returns theJComboBox.Methods in javax.swing.plaf.metal with parameters of type JComboBox Modifier and Type Method Description voidMetalComboBoxButton. setComboBox(JComboBox<Object> cb)Sets theJComboBox.Constructors in javax.swing.plaf.metal with parameters of type JComboBox Constructor Description MetalComboBoxButton(JComboBox<Object> cb, Icon i, boolean onlyIcon, CellRendererPane pane, JList<Object> list)Constructs a new instance ofMetalComboBoxButton.MetalComboBoxButton(JComboBox<Object> cb, Icon i, CellRendererPane pane, JList<Object> list)Constructs a new instance ofMetalComboBoxButton.MetalComboPopup(JComboBox<Object> cBox)Deprecated.Constructs a new instance ofMetalComboPopup.
- 
Uses of JComboBox in javax.swing.plaf.multiMethods in javax.swing.plaf.multi with parameters of type JComboBox Modifier and Type Method Description booleanMultiComboBoxUI. isFocusTraversable(JComboBox<?> a)Invokes theisFocusTraversablemethod on each UI handled by this object.booleanMultiComboBoxUI. isPopupVisible(JComboBox<?> a)Invokes theisPopupVisiblemethod on each UI handled by this object.voidMultiComboBoxUI. setPopupVisible(JComboBox<?> a, boolean b)Invokes thesetPopupVisiblemethod on each UI handled by this object.