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.

Constructor Index

 o GBConstraints()
 o GBConstraints(GridBagConstraints)
 o GBConstraints(int, int, int, int, double, double, int, int, int, int, Insets)

Method Index

 o getCode()
returns a string which corresponds to the code needed to create the current constraints.

Constructors

 o GBConstraints
 public GBConstraints()
 o 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)
 o GBConstraints
 public GBConstraints(GridBagConstraints c)

Methods

 o 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