Author: akazakov
Date: 2010-05-27 08:43:37 -0400 (Thu, 27 May 2010)
New Revision: 22369
Modified:
branches/3.2.helios/jst/plugins/org.jboss.tools.jst.web.tiles.ui/src/org/jboss/tools/jst/web/tiles/ui/editor/figures/TilesDiagramLayout.java
Log:
https://jira.jboss.org/browse/JBIDE-6377 Fixed compile error.
Modified:
branches/3.2.helios/jst/plugins/org.jboss.tools.jst.web.tiles.ui/src/org/jboss/tools/jst/web/tiles/ui/editor/figures/TilesDiagramLayout.java
===================================================================
---
branches/3.2.helios/jst/plugins/org.jboss.tools.jst.web.tiles.ui/src/org/jboss/tools/jst/web/tiles/ui/editor/figures/TilesDiagramLayout.java 2010-05-27
12:42:34 UTC (rev 22368)
+++
branches/3.2.helios/jst/plugins/org.jboss.tools.jst.web.tiles.ui/src/org/jboss/tools/jst/web/tiles/ui/editor/figures/TilesDiagramLayout.java 2010-05-27
12:43:37 UTC (rev 22369)
@@ -9,15 +9,24 @@
* Exadel, Inc. and Red Hat, Inc. - initial API and implementation
******************************************************************************/
package org.jboss.tools.jst.web.tiles.ui.editor.figures;
-import org.eclipse.draw2d.*;
-import org.eclipse.draw2d.geometry.*;
+import java.util.Comparator;
+import java.util.HashSet;
+import java.util.Hashtable;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Set;
+import java.util.TreeSet;
+import java.util.Vector;
+import org.eclipse.draw2d.AbstractLayout;
+import org.eclipse.draw2d.IFigure;
+import org.eclipse.draw2d.geometry.Dimension;
+import org.eclipse.draw2d.geometry.Point;
+import org.eclipse.draw2d.geometry.Rectangle;
import org.jboss.tools.jst.web.tiles.ui.editor.edit.DefinitionEditPart;
import org.jboss.tools.jst.web.tiles.ui.editor.model.IDefinition;
import org.jboss.tools.jst.web.tiles.ui.editor.model.ITilesOptions;
-import java.util.*;
-
public class TilesDiagramLayout extends AbstractLayout{
Dimension dim = new Dimension(0,0);
Hashtable<IDefinition,Rectangle> figureDim = new
Hashtable<IDefinition,Rectangle>();