Class BasicComboBoxUI.ComboBoxLayoutManager
java.lang.Object
javax.swing.plaf.basic.BasicComboBoxUI.ComboBoxLayoutManager
- All Implemented Interfaces:
- LayoutManager
- Direct Known Subclasses:
- MetalComboBoxUI.MetalComboBoxLayoutManager
- Enclosing class:
- BasicComboBoxUI
This layout manager handles the 'standard' layout of combo boxes.  It puts
 the arrow button to the right and the editor to the left.  If there is no
 editor it still keeps the arrow button to the right.
 This public inner class should be treated as protected.
 Instantiate it only within subclasses of
 
BasicComboBoxUI.- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddLayoutComponent(String name, Component comp) If the layout manager uses a per-component string, adds the componentcompto the layout, associating it with the string specified byname.voidlayoutContainer(Container parent) Lays out the specified container.minimumLayoutSize(Container parent) Calculates the minimum size dimensions for the specified container, given the components it contains.preferredLayoutSize(Container parent) Calculates the preferred size dimensions for the specified container, given the components it contains.voidRemoves the specified component from the layout.
- 
Constructor Details- 
ComboBoxLayoutManagerpublic ComboBoxLayoutManager()Constructs aComboBoxLayoutManager.
 
- 
- 
Method Details- 
addLayoutComponentDescription copied from interface:LayoutManagerIf the layout manager uses a per-component string, adds the componentcompto the layout, associating it with the string specified byname.- Specified by:
- addLayoutComponentin interface- LayoutManager
- Parameters:
- name- the string to be associated with the component
- comp- the component to be added
 
- 
removeLayoutComponentDescription copied from interface:LayoutManagerRemoves the specified component from the layout.- Specified by:
- removeLayoutComponentin interface- LayoutManager
- Parameters:
- comp- the component to be removed
 
- 
preferredLayoutSizeDescription copied from interface:LayoutManagerCalculates the preferred size dimensions for the specified container, given the components it contains.- Specified by:
- preferredLayoutSizein interface- LayoutManager
- Parameters:
- parent- the container to be laid out
- Returns:
- the preferred dimension for the container
- See Also:
 
- 
minimumLayoutSizeDescription copied from interface:LayoutManagerCalculates the minimum size dimensions for the specified container, given the components it contains.- Specified by:
- minimumLayoutSizein interface- LayoutManager
- Parameters:
- parent- the component to be laid out
- Returns:
- the minimum dimension for the container
- See Also:
 
- 
layoutContainerDescription copied from interface:LayoutManagerLays out the specified container.- Specified by:
- layoutContainerin interface- LayoutManager
- Parameters:
- parent- the container to be laid out
 
 
-