javax.swing.plaf.basic
public class BasicInternalFrameUI.InternalFrameLayout extends Object implements LayoutManager
Method Summary | |
---|---|
void | addLayoutComponent(String name, Component c)
This method is called when the given Component is added to the
JInternalFrame.
|
void | layoutContainer(Container c)
This method is used to set the bounds of the children of the
JInternalFrame.
|
Dimension | minimumLayoutSize(Container c)
This method returns the minimum layout size.
|
Dimension | preferredLayoutSize(Container c)
Th8is method returns the preferred layout size.
|
void | removeLayoutComponent(Component c)
This method is called when a Component is removed from the
JInternalFrame.
|
Parameters: name The name of the Component. c The Component added.
Parameters: c The Container to lay out.
Parameters: c The Container to find a minimum layout size for.
Returns: The minimum dimensions for the JInternalFrame.
Parameters: c The Container to find a preferred layout size for.
Returns: The preferred dimensions for the JInternalFrame.
Parameters: c The Component that was removed.