| java.lang.Object org.jfree.layout.CenterLayout
CenterLayout | public class CenterLayout implements LayoutManager,Serializable(Code) | | A layout manager that displays a single component in the center of its
container.
author: David Gilbert |
Constructor Summary | |
public | CenterLayout() Creates a new layout manager. |
CenterLayout | public CenterLayout()(Code) | | Creates a new layout manager.
|
addLayoutComponent | public void addLayoutComponent(Component comp)(Code) | | Not used.
Parameters: comp - the component. |
addLayoutComponent | public void addLayoutComponent(String name, Component comp)(Code) | | Not used.
Parameters: name - the component name. Parameters: comp - the component. |
layoutContainer | public void layoutContainer(Container parent)(Code) | | Lays out the components.
Parameters: parent - the parent. |
minimumLayoutSize | public Dimension minimumLayoutSize(Container parent)(Code) | | Returns the minimum size.
Parameters: parent - the parent. the minimum size. |
preferredLayoutSize | public Dimension preferredLayoutSize(Container parent)(Code) | | Returns the preferred size.
Parameters: parent - the parent. the preferred size. |
removeLayoutComponent | public void removeLayoutComponent(Component comp)(Code) | | Not used.
Parameters: comp - the component. |
removeLayoutComponent | public void removeLayoutComponent(String name, Component comp)(Code) | | Not used.
Parameters: name - the component name. Parameters: comp - the component. |
|
|