All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.bulletproof.gui.GridLayout

java.lang.Object
   |
   +----com.bulletproof.gui.GridLayout

public class GridLayout
extends Object
implements LayoutManager
A layout manager for a container that lays out grids.


Constructor Index

 o GridLayout()
Creates a grid layout with a default of one column per component, in a single row.
 o GridLayout(int, int)
Creates a grid layout with the specified rows and columns.
 o GridLayout(int, int, int, int)
Creates a grid layout with the specified rows, columns, horizontal gap, and vertical gap.

Method Index

 o addLayoutComponent(String, Component)
Adds the specified component with the specified name to the layout.
 o layoutContainer(Container)
Lays out the container in the specified panel.
 o minimumLayoutSize(Container)
Returns the minimum dimensions needed to layout the components contained in the specified panel.
 o removeLayoutComponent(Component)
Removes the specified component from the layout.
 o toString()
Returns the String representation of this GridLayout's values.

Constructors

 o GridLayout
 public GridLayout()
Creates a grid layout with a default of one column per component, in a single row.

 o GridLayout
 public GridLayout(int rows,
                   int cols)
Creates a grid layout with the specified rows and columns.

Parameters:
rows - the rows
cols - the columns
 o GridLayout
 public GridLayout(int rows,
                   int cols,
                   int hGap,
                   int vGap)
Creates a grid layout with the specified rows, columns, horizontal gap, and vertical gap.

Parameters:
rows - the rows; zero means 'any number.'
cols - the columns; zero means 'any number.' Only one of 'rows' and 'cols' can be zero, not both.
hgap - the horizontal gap variable
vgap - the vertical gap variable
Throws: IllegalArgumentException
If the rows and columns are invalid.

Methods

 o addLayoutComponent
 public void addLayoutComponent(String where,
                                Component component)
Adds the specified component with the specified name to the layout.

Parameters:
name - the name of the component
comp - the component to be added
 o removeLayoutComponent
 public void removeLayoutComponent(Component comp)
Removes the specified component from the layout. Does not apply.

Parameters:
comp - the component to be removed
 o minimumLayoutSize
 public Dimension minimumLayoutSize(Container parent)
Returns the minimum dimensions needed to layout the components contained in the specified panel.

Parameters:
parent - the component which needs to be laid out
 o layoutContainer
 public void layoutContainer(Container parent)
Lays out the container in the specified panel.

Parameters:
parent - the specified component being laid out
See Also:
Container
 o toString
 public String toString()
Returns the String representation of this GridLayout's values.

Overrides:
toString in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index