| java.lang.Object org.netbeans.swing.tabcontrol.plaf.StackLayout
StackLayout | class StackLayout implements LayoutManager(Code) | | Special simple layout used in TabbedContainer. Shows component in the
"stack", it means that only one component is visible at any time, others are
always hidden "below" the visible one. Use method showComponent to select
visible component.
author: Dafe Simonek |
addLayoutComponent | public void addLayoutComponent(String name, Component comp)(Code) | | Implementation of LayoutManager interface *********
|
getVisibleComponent | public Component getVisibleComponent()(Code) | | Allows support for content policies
Currently visible component or null |
removeLayoutComponent | public void removeLayoutComponent(Component comp)(Code) | | |
showComponent | public void showComponent(Component c, Container parent)(Code) | | Set the currently displayed component. If passed null for the component,
all contained components will be made invisible (sliding windows do this)
Parameters: c - Component to show Parameters: parent - Parent container |
|
|