Class sunsoft.jws.visual.rt.awt.GBConstraints
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class sunsoft.jws.visual.rt.awt.GBConstraints

java.lang.Object
   |
   +----sunsoft.jws.visual.rt.awt.GBConstraints

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

Variable Index

 o anchor
 o BOTH
 o CENTER
 o EAST
 o fill
 o gridheight
 o gridwidth
 o gridx
 o gridy
 o hardinsets
 o hardipadx
 o hardipady
 o HORIZONTAL
 o insets
 o ipadx
 o ipady
 o location
 o minsize
 o NONE
 o NORTH
 o NORTHEAST
 o NORTHWEST
 o RELATIVE
 o REMAINDER
 o shrinkx
 o shrinky
 o size
 o SOUTH
 o SOUTHEAST
 o SOUTHWEST
 o VERTICAL
 o weightx
 o weighty
 o WEST

Constructor Index

 o GBConstraints()
Creates a set of gridbag constraints.
 o GBConstraints(String)
Creates a set of gridbag constraints by parsing the given constraints option string.

Method Index

 o clone()

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
 o hardinsets
  public Insets hardinsets
 o hardipadx
  public int hardipadx
 o hardipady
  public int hardipady
 o shrinkx
  public boolean shrinkx
 o shrinky
  public boolean shrinky
 o location
  public Point location
 o size
  public Dimension size
 o minsize
  public Dimension minsize

Constructors

 o GBConstraints
  public GBConstraints()
Creates a set of gridbag constraints.
 o GBConstraints
  public GBConstraints(String constraints)
Creates a set of gridbag constraints by parsing the given constraints option string. Each option has the form key=value. Options are separated by semicolons (;).

Methods

 o clone
  public Object clone()
Overrides:
clone in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index