Synergy Home Page

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.
 
Methods inherited from class java.awt.GridBagConstraints
clone
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

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 axes
gridy - The grid position on the y axes
gridwidth - The number of cell positions the components extends across
gridheight - The number of cell positions the components extends down
weightx - The weight associated with this constraint when resizing on the x axes
weighty - The weight associated with this constraint when resizing on the y axes
insets - The insets
ipadx - The padding on the x axes
ipady - 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 axes
gridy - The grid position on the y axes
gridwidth - The number of cell positions the components extends across
gridheight - The number of cell positions the components extends down
weightx - The weight associated with this constraint when resizing on the x axes
weighty - The weight associated with this constraint when resizing on the y axes Please complete the missing tags for BGridBagConstraints

Synergy Home Page