Class BasicInternalFrameUI.InternalFrameLayout
java.lang.Object
javax.swing.plaf.basic.BasicInternalFrameUI.InternalFrameLayout
- All Implemented Interfaces:
- LayoutManager
- Enclosing class:
- BasicInternalFrameUI
Internal frame layout.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddLayoutComponent(String name, Component c) If the layout manager uses a per-component string, adds the componentcompto the layout, associating it with the string specified byname.voidLays out the specified container.Calculates the minimum size dimensions for the specified container, given the components it contains.Calculates the preferred size dimensions for the specified container, given the components it contains.voidRemoves the specified component from the layout.
- 
Constructor Details- 
InternalFrameLayoutpublic InternalFrameLayout()Constructs anInternalFrameLayout.
 
- 
- 
Method Details- 
addLayoutComponentIf 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
- c- the component to be added
 
- 
removeLayoutComponentRemoves the specified component from the layout.- Specified by:
- removeLayoutComponentin interface- LayoutManager
- Parameters:
- c- the component to be removed
 
- 
preferredLayoutSizeCalculates the preferred size dimensions for the specified container, given the components it contains.- Specified by:
- preferredLayoutSizein interface- LayoutManager
- Parameters:
- c- the container to be laid out
- Returns:
- the preferred dimension for the container
- See Also:
 
- 
minimumLayoutSizeCalculates the minimum size dimensions for the specified container, given the components it contains.- Specified by:
- minimumLayoutSizein interface- LayoutManager
- Parameters:
- c- the component to be laid out
- Returns:
- the minimum dimension for the container
- See Also:
 
- 
layoutContainerLays out the specified container.- Specified by:
- layoutContainerin interface- LayoutManager
- Parameters:
- c- the container to be laid out
 
 
-