Class java.awt.GridBagConstraints
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.awt.GridBagConstraints

java.lang.Object
|
   +----java.awt.GridBagConstraints

public class GridBagConstraints
extends Object
implements Cloneable
GridBagConstraints is used to specify constraints for components laid out using the GridBagLayout class.
See Also:
GridBagLayout

Variable Index

 o anchor
 o BOTH
 o CENTER
 o EAST
 o fill
 o gridheight
 o gridwidth
 o gridx
 o gridy
 o HORIZONTAL
 o insets
 o ipadx
 o ipady
 o NONE
 o NORTH
 o NORTHEAST
 o NORTHWEST
 o RELATIVE
 o REMAINDER
 o SOUTH
 o SOUTHEAST
 o SOUTHWEST
 o VERTICAL
 o weightx
 o weighty
 o WEST

Constructor Index

 o GridBagConstraints()

Method Index

 o clone()
Creates a clone of the object.

Variables

 o RELATIVE
public final static int RELATIVE
 o REMAINDER
public final static int REMAINDER
 o NONE
public final static int NONE
 o BOTH
public final static int BOTH
 o HORIZONTAL
public final static int HORIZONTAL
 o VERTICAL
public final static int VERTICAL
 o CENTER
public final static int CENTER
 o NORTH
public final static int NORTH
 o NORTHEAST
public final static int NORTHEAST
 o EAST
public final static int EAST
 o SOUTHEAST
public final static int SOUTHEAST
 o SOUTH
public final static int SOUTH
 o SOUTHWEST
public final static int SOUTHWEST
 o WEST
public final static int WEST
 o NORTHWEST
public final static int NORTHWEST
 o gridx
public int gridx
 o gridy
public int gridy
 o gridwidth
public int gridwidth
 o gridheight
public int gridheight
 o weightx
public double weightx
 o weighty
public double weighty
 o anchor
public int anchor
 o fill
public int fill
 o insets
public Insets insets
 o ipadx
public int ipadx
 o ipady
public int ipady

Constructors

 o GridBagConstraints
public GridBagConstraints()

Methods

 o clone
public Object clone()
Creates a clone of the object.
Overrides:
clone in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index