Package javascript.awt
Class FlowLayout
- java.lang.Object
-
- javascript.awt.FlowLayout
-
- All Implemented Interfaces:
LayoutManager
public class FlowLayout extends java.lang.Object implements LayoutManager
The java.awt.FlowLayout clone- Author:
- gianpiero.diblasi
-
-
Constructor Summary
Constructors Constructor Description FlowLayout(int align, 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 manager
-
-
-
Field Detail
-
LEFT
public static final int LEFT
- See Also:
- Constant Field Values
-
CENTER
public static final int CENTER
- See Also:
- Constant Field Values
-
RIGHT
public static final int RIGHT
- See Also:
- Constant Field Values
-
LEADING
public static final int LEADING
- See Also:
- Constant Field Values
-
TRAILING
public static final int TRAILING
- See Also:
- Constant Field Values
-
-
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
-
-