KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > awt > FlowLayout

java.awt
Class FlowLayout

java.lang.Object
  extended by java.awt.FlowLayout
All Implemented Interfaces:
LayoutManager, Serializable
See Also:
Top Examples, Source Code, TRAILING, LEADING, CENTER, RIGHT, LEFT

public void addLayoutComponent(String name,
                               Component comp)
See Also:
LayoutManager
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int CENTER
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public FlowLayout()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public FlowLayout(int align)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public FlowLayout(int align,
                  int hgap,
                  int vgap)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int getAlignment()
See Also:
setAlignment(int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int getHgap()
See Also:
setHgap(int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int getVgap()
See Also:
setVgap(int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void layoutContainer(Container target)
See Also:
Container.doLayout(), LayoutManager
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int LEADING
See Also:
ComponentOrientation, Component.getComponentOrientation()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int LEFT
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Dimension minimumLayoutSize(Container target)
See Also:
Container.doLayout(), preferredLayoutSize(java.awt.Container), LayoutManager
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Dimension preferredLayoutSize(Container target)
See Also:
Container.getPreferredSize(), minimumLayoutSize(java.awt.Container), LayoutManager
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void removeLayoutComponent(Component comp)
See Also:
Container.removeAll(), LayoutManager
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int RIGHT
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setAlignment(int align)
See Also:
getAlignment()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setHgap(int hgap)
See Also:
getHgap()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setVgap(int vgap)
See Also:
getVgap()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String toString()
See Also:
Object
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int TRAILING
See Also:
ComponentOrientation, Component.getComponentOrientation()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags