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, Serializable
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 new object of the same class as this object.

Variables

 o RELATIVE
 public static final int RELATIVE
 o REMAINDER
 public static final int REMAINDER
 o NONE
 public static final int NONE
 o BOTH
 public static final int BOTH
 o HORIZONTAL
 public static final int HORIZONTAL
 o VERTICAL
 public static final int VERTICAL
 o CENTER
 public static final int CENTER
 o NORTH
 public static final int NORTH
 o NORTHEAST
 public static final int NORTHEAST
 o EAST
 public static final int EAST
 o SOUTHEAST
 public static final int SOUTHEAST
 o SOUTH
 public static final int SOUTH
 o SOUTHWEST
 public static final int SOUTHWEST
 o WEST
 public static final int WEST
 o NORTHWEST
 public static final 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 new object of the same class as this object.

Overrides:
clone in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index