Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa_diagram_editor/plugins/org.eclipse.jpt.jpadiagrameditor.ui/src/org/eclipse/jpt/jpadiagrameditor/ui/internal/feature/MoveEntityShapeFeature.java')
-rw-r--r--jpa_diagram_editor/plugins/org.eclipse.jpt.jpadiagrameditor.ui/src/org/eclipse/jpt/jpadiagrameditor/ui/internal/feature/MoveEntityShapeFeature.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/jpa_diagram_editor/plugins/org.eclipse.jpt.jpadiagrameditor.ui/src/org/eclipse/jpt/jpadiagrameditor/ui/internal/feature/MoveEntityShapeFeature.java b/jpa_diagram_editor/plugins/org.eclipse.jpt.jpadiagrameditor.ui/src/org/eclipse/jpt/jpadiagrameditor/ui/internal/feature/MoveEntityShapeFeature.java
index 80d259355f..6fc73acaf2 100644
--- a/jpa_diagram_editor/plugins/org.eclipse.jpt.jpadiagrameditor.ui/src/org/eclipse/jpt/jpadiagrameditor/ui/internal/feature/MoveEntityShapeFeature.java
+++ b/jpa_diagram_editor/plugins/org.eclipse.jpt.jpadiagrameditor.ui/src/org/eclipse/jpt/jpadiagrameditor/ui/internal/feature/MoveEntityShapeFeature.java
@@ -36,9 +36,11 @@ public class MoveEntityShapeFeature extends DefaultMoveShapeFeature {
super(fp);
}
+ @Override
protected void moveAllBendpoints(IMoveShapeContext context) {
}
+ @Override
protected void postMoveShape(IMoveShapeContext context) {
ContainerShape cs = (ContainerShape)context.getShape();
JPAEditorUtil.rearrangeAllConnections(cs, getFeatureProvider(), false);
@@ -55,7 +57,8 @@ public class MoveEntityShapeFeature extends DefaultMoveShapeFeature {
PictogramElement el = context.getPictogramElement();
TransactionalEditingDomain ted = TransactionUtil.getEditingDomain(el);
ted.getCommandStack().execute(new RecordingCommand(ted) {
- protected void doExecute() {
+ @Override
+ protected void doExecute() {
move(context);
}
});
@@ -65,6 +68,7 @@ public class MoveEntityShapeFeature extends DefaultMoveShapeFeature {
super.internalMove(context);
}
+ @Override
public IJPAEditorFeatureProvider getFeatureProvider() {
return (IJPAEditorFeatureProvider)super.getFeatureProvider();
}

Back to the top