au.edu.swin.synergy.lib
Class BGridBagConstraints
java.lang.Object
|
+--java.awt.GridBagConstraints
|
+--au.edu.swin.synergy.lib.BGridBagConstraints
- public class BGridBagConstraints
- extends GridBagConstraints
The BGridBagConstraints is a wrapper around the GridBagConstraints class
which allows the properties to be set in a normal manner as opposed to
the strangely un-java like manner in which the original GridBagConstraints works.
- Author:
- Tristan Austin (adapated from the borland class GridBagConstraints2
Please complete these missing tags
- Copyright Belongs To:
-
- See Also:
- Serialized Form
Fields inherited from class java.awt.GridBagConstraints |
anchor,
BOTH,
CENTER,
EAST,
fill,
gridheight,
gridwidth,
gridx,
gridy,
HORIZONTAL,
insets,
ipadx,
ipady,
NONE,
NORTH,
NORTHEAST,
NORTHWEST,
RELATIVE,
REMAINDER,
SOUTH,
SOUTHEAST,
SOUTHWEST,
VERTICAL,
weightx,
weighty,
WEST |
Constructor Summary |
BGridBagConstraints(int gridx,
int gridy,
int gridwidth,
int gridheight,
double weightx,
double weighty,
int anchor,
int fill,
Insets insets,
int ipadx,
int ipady)
Creats a new grid bag constraints object with the given constraints. |
BGridBagConstraints(int gridx,
int gridy,
int gridwidth,
int gridheight,
double weightx,
double weighty,
int anchor,
int fill,
int ipadx,
int ipady)
Creats a new grid bag constraints object with the given constraints. |
BGridBagConstraints
public BGridBagConstraints(int gridx,
int gridy,
int gridwidth,
int gridheight,
double weightx,
double weighty,
int anchor,
int fill,
Insets insets,
int ipadx,
int ipady)
- Creats a new grid bag constraints object with the given constraints.
- Parameters:
gridx
- The grid position on the x axesgridy
- The grid position on the y axesgridwidth
- The number of cell positions the components extends acrossgridheight
- The number of cell positions the components extends downweightx
- The weight associated with this constraint when resizing on the x axesweighty
- The weight associated with this constraint when resizing on the y axesinsets
- The insetsipadx
- The padding on the x axesipady
- The padding on the y axes
Please complete the missing tags for BGridBagConstraints
BGridBagConstraints
public BGridBagConstraints(int gridx,
int gridy,
int gridwidth,
int gridheight,
double weightx,
double weighty,
int anchor,
int fill,
int ipadx,
int ipady)
- Creats a new grid bag constraints object with the given constraints.
- Parameters:
gridx
- The grid position on the x axesgridy
- The grid position on the y axesgridwidth
- The number of cell positions the components extends acrossgridheight
- The number of cell positions the components extends downweightx
- The weight associated with this constraint when resizing on the x axesweighty
- The weight associated with this constraint when resizing on the y axes
Please complete the missing tags for BGridBagConstraints