org.apache.batik.ext.swing
Interface GridBagConstants

All Known Implementing Classes:
JGridBagPanel, PreferenceDialog

public interface GridBagConstants

GridBagConstraints constants.


Field Summary
static int BOTH
          Resize the component both horizontally and vertically.
static int CENTER
          Put the component in the center of its display area.
static int EAST
          Put the component on the left side of its display area, centered vertically.
static int HORIZONTAL
          Resize the component horizontally but not vertically.
static int NONE
          Do not resize the component.
static int NORTH
          Put the component at the top of its display area, centered horizontally.
static int NORTHEAST
          Put the component at the top-right corner of its display area.
static int NORTHWEST
          Put the component at the top-left corner of its display area.
static int REMAINDER
          Specify that this component is the last component in its column or row.
static int SOUTH
          Put the component at the bottom of its display area, centered horizontally.
static int SOUTHEAST
          Put the component at the bottom-right corner of its display area.
static int SOUTHWEST
          Put the component at the bottom-left corner of its display area.
static int VERTICAL
          Resize the component vertically but not horizontally.
static int WEST
          Put the component on the left side of its display area, centered vertically.
 

Field Detail

REMAINDER

public static final int REMAINDER
Specify that this component is the last component in its column or row.
Since:
JDK1.0

NONE

public static final int NONE
Do not resize the component.
Since:
JDK1.0

BOTH

public static final int BOTH
Resize the component both horizontally and vertically.
Since:
JDK1.0

HORIZONTAL

public static final int HORIZONTAL
Resize the component horizontally but not vertically.
Since:
JDK1.0

VERTICAL

public static final int VERTICAL
Resize the component vertically but not horizontally.
Since:
JDK1.0

CENTER

public static final int CENTER
Put the component in the center of its display area.
Since:
JDK1.0

NORTH

public static final int NORTH
Put the component at the top of its display area, centered horizontally.
Since:
JDK1.0

NORTHEAST

public static final int NORTHEAST
Put the component at the top-right corner of its display area.
Since:
JDK1.0

EAST

public static final int EAST
Put the component on the left side of its display area, centered vertically.
Since:
JDK1.0

SOUTHEAST

public static final int SOUTHEAST
Put the component at the bottom-right corner of its display area.
Since:
JDK1.0

SOUTH

public static final int SOUTH
Put the component at the bottom of its display area, centered horizontally.
Since:
JDK1.0

SOUTHWEST

public static final int SOUTHWEST
Put the component at the bottom-left corner of its display area.
Since:
JDK1.0

WEST

public static final int WEST
Put the component on the left side of its display area, centered vertically.
Since:
JDK1.0

NORTHWEST

public static final int NORTHWEST
Put the component at the top-left corner of its display area.
Since:
JDK1.0


Copyright © 2002 Apache Software Foundation. All Rights Reserved.