java.awt
Class GridBagConstraints
- Cloneable, Serializable
This specifies the constraints for a component managed by the
GridBagLayout layout manager.
GridBagConstraints() - Create a new GridBagConstraints object with the default
parameters.
|
GridBagConstraints(int gridx, int gridy, int gridwidth, int gridheight, double weightx, double weighty, int anchor, int fill, Insets insets, int ipadx, int ipady) - Create a new GridBagConstraints object with the indicated
parameters.
|
clone , equals , extends Object> getClass , finalize , hashCode , notify , notifyAll , toString , wait , wait , wait |
BOTH
public static final int BOTH
Fill in both directions.
CENTER
public static final int CENTER
Position in the center.
EAST
public static final int EAST
Position to the east.
FIRST_LINE_END
public static final int FIRST_LINE_END
Position to where the first text line would end. Equals to NORTHEAST for
horizontal left-to-right orientations.
FIRST_LINE_START
public static final int FIRST_LINE_START
Position to where the first text line would start. Equals to NORTHWEST for
horizontal left-to-right orientations.
HORIZONTAL
public static final int HORIZONTAL
Fill horizontally.
LAST_LINE_END
public static final int LAST_LINE_END
Position to where the last text line would end. Equals to SOUTHEAST for
horizontal left-to-right orientations.
LAST_LINE_START
public static final int LAST_LINE_START
Position to where the last text line would start. Equals to SOUTHWEST for
horizontal left-to-right orientations.
LINE_END
public static final int LINE_END
Position to where a text line would end. Equals to EAST for
left-to-right orientations.
LINE_START
public static final int LINE_START
Position to where a text line would start. Equals to WEST for
left-to-right orientations.
NONE
public static final int NONE
Don't fill.
NORTH
public static final int NORTH
Position to the north.
NORTHEAST
public static final int NORTHEAST
Position to the northeast.
NORTHWEST
public static final int NORTHWEST
Position to the northwest.
PAGE_END
public static final int PAGE_END
Position to where a page ends. Equals SOUTH for horizontal orientations.
PAGE_START
public static final int PAGE_START
Position to where a page starts. Equals NORTH for horizontal orientations.
RELATIVE
public static final int RELATIVE
Occupy all remaining cells except last cell.
REMAINDER
public static final int REMAINDER
Occupy all remaining cells.
SOUTH
public static final int SOUTH
Position to the south.
SOUTHEAST
public static final int SOUTHEAST
Position to the southeast.
SOUTHWEST
public static final int SOUTHWEST
Position to the southwest.
VERTICAL
public static final int VERTICAL
Fill vertically.
WEST
public static final int WEST
Position to the west.
GridBagConstraints
public GridBagConstraints()
Create a new GridBagConstraints object with the default
parameters.
GridBagConstraints
public GridBagConstraints(int gridx,
int gridy,
int gridwidth,
int gridheight,
double weightx,
double weighty,
int anchor,
int fill,
Insets insets,
int ipadx,
int ipady)
Create a new GridBagConstraints object with the indicated
parameters.
GridBagConstraints.java -- Constraints for GridBag layout manager
Copyright (C) 2000, 2001, 2002, 2004 Free Software Foundation
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version.