| java.lang.Object org.jfree.ui.tabbedui.VerticalLayout
VerticalLayout | public class VerticalLayout implements LayoutManager(Code) | | A simple layout manager, which aligns all components in a vertical
flow layout.
author: Thomas Morgner |
VerticalLayout | public VerticalLayout()(Code) | | DefaultConstructor.
|
VerticalLayout | public VerticalLayout(boolean useParent)(Code) | | Creates a new vertical layout. If useParent is set to true,
the parents size will be used when performing the layouting,
else only the parents childs are used to compute the layout.
Parameters: useParent - defines, whether the parent's size is used. |
addLayoutComponent | public void addLayoutComponent(String name, Component comp)(Code) | | Adds the specified component with the specified name to
the layout.
Parameters: name - the component name Parameters: comp - the component to be added |
isUseSizeFromParent | public boolean isUseSizeFromParent()(Code) | | Returns, whether the parent's defined size is used during the layouting,
or whether the childs are used to compute the size.
true, if the parent's size is used, false otherwise. |
layoutContainer | public void layoutContainer(Container parent)(Code) | | Lays out the container in the specified panel.
Parameters: parent - the component which needs to be laid out |
minimumLayoutSize | public Dimension minimumLayoutSize(Container parent)(Code) | | Calculates the minimum size dimensions for the specified
panel given the components in the specified parent container.
Parameters: parent - the component to be laid out the minimul layoutsize See Also: VerticalLayout.preferredLayoutSize |
preferredLayoutSize | public Dimension preferredLayoutSize(Container parent)(Code) | | Calculates the preferred size dimensions for the specified
panel given the components in the specified parent container.
Parameters: parent - the component to be laid out the preferred layout size See Also: VerticalLayout.minimumLayoutSize |
removeLayoutComponent | public void removeLayoutComponent(Component comp)(Code) | | Removes the specified component from the layout.
Parameters: comp - the component to be removed |
|
|