Package javascript.awt
Class CardLayout
- java.lang.Object
-
- javascript.awt.CardLayout
-
- All Implemented Interfaces:
LayoutManager
public class CardLayout extends java.lang.Object implements LayoutManager
The java.awt.CardLayout clone- Author:
- gianpiero.diblasi
-
-
Constructor Summary
Constructors Constructor Description CardLayout(int hGap, int vGap)Creates the object
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddInPanel(JSPanel panel, JSComponent component, java.lang.Object constraints)Add a component in a panelvoidresetPanel(JSPanel panel)Resets the panel managed by this layout manager (all custom configurations will be removed)voidsetPanel(JSPanel panel)Sets the panel managed by this layout managervoidshow(JSPanel parent, java.lang.String name)The java.awt.CardLayout.show clone
-
-
-
Method Detail
-
setPanel
public void setPanel(JSPanel panel)
Description copied from interface:LayoutManagerSets the panel managed by this layout manager- Specified by:
setPanelin interfaceLayoutManager- Parameters:
panel- The panel
-
resetPanel
public void resetPanel(JSPanel panel)
Description copied from interface:LayoutManagerResets the panel managed by this layout manager (all custom configurations will be removed)- Specified by:
resetPanelin interfaceLayoutManager- Parameters:
panel- The panel
-
addInPanel
public void addInPanel(JSPanel panel, JSComponent component, java.lang.Object constraints)
Description copied from interface:LayoutManagerAdd a component in a panel- Specified by:
addInPanelin interfaceLayoutManager- Parameters:
panel- The panelcomponent- The componentconstraints- The constraints
-
show
public void show(JSPanel parent, java.lang.String name)
The java.awt.CardLayout.show clone- Parameters:
parent- The parent componentname- The name of the card to show
-
-