diff options
| author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-09-16 16:22:26 +0000 |
|---|---|---|
| committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-09-16 16:22:26 +0000 |
| commit | f6cffac6c3d4898322d2095c7a1035f73e626738 (patch) | |
| tree | 4cee849f47d6ca4453316b61372300a8a2c7d672 /java/ImageProcessing/framework/Options.java | |
| parent | 3135fa987df342d72db62ec0a5d2b3fb349b72d3 (diff) | |
| download | ATCD-TAO-1_1_20.tar.gz | |
This commit was manufactured by cvs2svn to create tag 'TAO-1_1_20'.TAO-1_1_20
Diffstat (limited to 'java/ImageProcessing/framework/Options.java')
| -rw-r--r-- | java/ImageProcessing/framework/Options.java | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/java/ImageProcessing/framework/Options.java b/java/ImageProcessing/framework/Options.java deleted file mode 100644 index edbe90ba904..00000000000 --- a/java/ImageProcessing/framework/Options.java +++ /dev/null @@ -1,25 +0,0 @@ -package imaging.framework; - -import java.awt.*; - -class Options -{ - // Set GridBagConstraints - public static void constrain (Container container, Component component, - int gridx, int gridy, - int gridwidth, int gridheight, - int fill, int anchor) - { - GridBagConstraints c = new GridBagConstraints (); - GridBagLayout gbl = (GridBagLayout) container.getLayout (); - - c.gridx = gridx; - c.gridy = gridy; - c.gridwidth = gridwidth; - c.gridheight = gridheight; - c.fill = fill; - c.anchor = anchor; - gbl.setConstraints (component, c); - container.add (component); - } -} |
