javax.swing.plaf.basic
protected class BasicSplitPaneDivider.DividerLayout extends Object implements LayoutManager
| Constructor Summary | |
|---|---|
| protected | DividerLayout()
Creates a new DividerLayout object. |
| Method Summary | |
|---|---|
| void | addLayoutComponent(String string, Component c)
This method is called when a Component is added.
|
| void | layoutContainer(Container c)
This method is called to lay out the container.
|
| Dimension | minimumLayoutSize(Container c)
This method returns the minimum layout size.
|
| Dimension | preferredLayoutSize(Container c)
This method returns the preferred layout size.
|
| void | removeLayoutComponent(Component c)
This method is called when a component is removed.
|
Parameters: string The constraints string. c The Component to add.
Parameters: c The container to lay out.
Parameters: c The container to calculate for.
Returns: The minimum layout size.
Parameters: c The container to calculate for.
Returns: The preferred layout size.
Parameters: c The component to remove.