Module java.desktop
Package javax.swing.plaf.basic
Class BasicInternalFrameTitlePane.TitlePaneLayout
java.lang.Object
javax.swing.plaf.basic.BasicInternalFrameTitlePane.TitlePaneLayout
- All Implemented Interfaces:
- LayoutManager
- Enclosing class:
- BasicInternalFrameTitlePane
This class should be treated as a "protected" inner class.
 Instantiate it only within subclasses of 
Foo.- 
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- 
TitlePaneLayoutpublic TitlePaneLayout()Constructs aTitlePaneLayout.
 
- 
- 
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
- c- the component to be added
 
- 
removeLayoutComponentDescription copied from interface:LayoutManagerRemoves the specified component from the layout.- Specified by:
- removeLayoutComponentin interface- LayoutManager
- Parameters:
- c- 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:
- c- 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:
- c- 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:
- c- the container to be laid out
 
 
-