From f6cffac6c3d4898322d2095c7a1035f73e626738 Mon Sep 17 00:00:00 2001 From: nobody Date: Sun, 16 Sep 2001 16:22:26 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'TAO-1_1_20'. --- java/ImageProcessing/framework/Options.java | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 java/ImageProcessing/framework/Options.java (limited to 'java/ImageProcessing/framework/Options.java') 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); - } -} -- cgit v1.2.1