javax.swing.plaf.basic
public class BasicInternalFrameTitlePane.TitlePaneLayout extends Object implements LayoutManager
UNKNOWN: Apparently this class was intended to be protected, but was made public by a compiler bug and is now public for compatibility.
Constructor Summary | |
---|---|
TitlePaneLayout()
Creates a new TitlePaneLayout object. |
Method Summary | |
---|---|
void | addLayoutComponent(String name, Component c)
This method is called when adding a Component to the Container.
|
void | layoutContainer(Container c)
This method is called to lay out the children of the Title Pane.
|
Dimension | minimumLayoutSize(Container c)
This method returns the minimum size of the given Container given the
children that it has.
|
Dimension | preferredLayoutSize(Container c)
This method returns the preferred size of the given Container taking
into account the children that it has.
|
void | removeLayoutComponent(Component c)
This method is called when removing a Component from the Container.
|
TitlePaneLayout
object.Parameters: name The name to reference the added Component by. c The Component to add.
Parameters: c The Container to lay out.
Parameters: c The Container to get a minimum size for.
Returns: The minimum size of the Container.
Parameters: c The Container to lay out.
Returns: The preferred size of the Container.
Parameters: c The Component to remove.