All Packages Class Hierarchy This Package Previous Next Index
Class datarep.common.GBConstraints
java.lang.Object
|
+----java.awt.GridBagConstraints
|
+----datarep.common.GBConstraints
- public class GBConstraints
- extends GridBagConstraints
This is a convienence class which extends GridBagConstraints. The only public method which is
available gives as output the gridbag constraints as a string, which gives the code which would be used
to generate the constraints.
- Version:
- 1.2
- Author:
- Data Representations, Inc.
-
GBConstraints()
-
-
GBConstraints(GridBagConstraints)
-
-
GBConstraints(int, int, int, int, double, double, int, int, int, int, Insets)
-
-
getCode()
- returns a string which corresponds to the code needed to create the current constraints.
GBConstraints
public GBConstraints()
GBConstraints
public GBConstraints(int gridx,
int gridy,
int gridwidth,
int gridheight,
double weightx,
double weighty,
int anchor,
int fill,
int ipadx,
int ipady,
Insets insets)
GBConstraints
public GBConstraints(GridBagConstraints c)
getCode
public String getCode()
- returns a string which corresponds to the code needed to create the current constraints.
All Packages Class Hierarchy This Package Previous Next Index