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
-
BOTH
-
-
CENTER
-
-
EAST
-
-
HORIZONTAL
-
-
NONE
-
-
NORTH
-
-
NORTHEAST
-
-
NORTHWEST
-
-
RELATIVE
-
-
REMAINDER
-
-
SOUTH
-
-
SOUTHEAST
-
-
SOUTHWEST
-
-
VERTICAL
-
-
WEST
-
-
anchor
-
-
fill
-
-
gridheight
-
-
gridwidth
-
-
gridx
-
-
gridy
-
-
insets
-
-
ipadx
-
-
ipady
-
-
weightx
-
-
weighty
-
-
GridBagConstraints()
-
-
clone()
- Creates a clone of the object.
RELATIVE
public final static int RELATIVE
REMAINDER
public final static int REMAINDER
NONE
public final static int NONE
BOTH
public final static int BOTH
HORIZONTAL
public final static int HORIZONTAL
VERTICAL
public final static int VERTICAL
CENTER
public final static int CENTER
NORTH
public final static int NORTH
NORTHEAST
public final static int NORTHEAST
EAST
public final static int EAST
SOUTHEAST
public final static int SOUTHEAST
SOUTH
public final static int SOUTH
SOUTHWEST
public final static int SOUTHWEST
WEST
public final static int WEST
NORTHWEST
public final static int NORTHWEST
gridx
public int gridx
gridy
public int gridy
gridwidth
public int gridwidth
gridheight
public int gridheight
weightx
public double weightx
weighty
public double weighty
anchor
public int anchor
fill
public int fill
insets
public Insets insets
ipadx
public int ipadx
ipady
public int ipady
GridBagConstraints
public GridBagConstraints()
clone
public Object clone()
- Creates a clone of the object.
- Overrides:
- clone in class Object
All Packages Class Hierarchy This Package Previous Next Index