From 501033b5b098b3cb0e251be1503b09af27f15b70 Mon Sep 17 00:00:00 2001 From: Daniel Ratiu <ratiu@fortiss.org> Date: Sun, 11 Dec 2011 20:45:07 +0000 Subject: [PATCH] small cleaning refs 311 --- .../policy/ConstrainedNonResizableEditPolicy.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/org.fortiss.tooling.base.ui/trunk/src/org/fortiss/tooling/base/ui/editpart/policy/ConstrainedNonResizableEditPolicy.java b/org.fortiss.tooling.base.ui/trunk/src/org/fortiss/tooling/base/ui/editpart/policy/ConstrainedNonResizableEditPolicy.java index 9b08218cb..9b7d3299d 100644 --- a/org.fortiss.tooling.base.ui/trunk/src/org/fortiss/tooling/base/ui/editpart/policy/ConstrainedNonResizableEditPolicy.java +++ b/org.fortiss.tooling.base.ui/trunk/src/org/fortiss/tooling/base/ui/editpart/policy/ConstrainedNonResizableEditPolicy.java @@ -47,7 +47,7 @@ import org.fortiss.tooling.kernel.model.INamedCommentedElement; * @author hoelzl * @author $Author$ * @version $Rev$ - * @ConQAT.Rating YELLOW Hash: FC9D74B52F6CC2BB215327823B90DB25 + * @ConQAT.Rating YELLOW Hash: FC5EB05DCFC761ED4DBC64A5254DCD3A */ public class ConstrainedNonResizableEditPolicy<T extends ILayoutedModelElement & INamedCommentedElement> extends NonResizableEditPolicy { @@ -66,8 +66,8 @@ public class ConstrainedNonResizableEditPolicy<T extends ILayoutedModelElement & public void showSourceFeedback(Request request) { if (REQ_MOVE.equals(request.getType())) { // get the bounds of the parent - Rectangle containerBounds = LayoutDataUtils - .getNodeBounds((ILayoutedModelElement) part.getModel()); + Rectangle containerBounds = LayoutDataUtils.getNodeBounds(part + .getModel()); // get the child position relative to the parent Point childPos = getHostFigure().getBounds().getLocation() .getTranslated(containerBounds.getLocation().getNegated()); @@ -91,8 +91,7 @@ public class ConstrainedNonResizableEditPolicy<T extends ILayoutedModelElement & // snap to grid orient.setOffset(SnapToGridUtils.snapToGrid(orient.getOffset())); // use the calculated value for positioning - Dimension d = LayoutDataUtils - .getNodeSize((ILayoutedModelElement) part.getModel()); + Dimension d = LayoutDataUtils.getNodeSize(part.getModel()); org.fortiss.tooling.base.model.layout.Point p = LayoutDataUtils .getAbsolute(orient, d, DefaultLayoutConstants.DEFAULT_SHAPE_INSETS); -- GitLab