Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated/org.eclipse.papyrus.uml.diagram.sequence_initial-kepler/src/org/eclipse/papyrus/uml/diagram/sequence/edit/parts/Message6EditPart.java')
-rw-r--r--deprecated/org.eclipse.papyrus.uml.diagram.sequence_initial-kepler/src/org/eclipse/papyrus/uml/diagram/sequence/edit/parts/Message6EditPart.java278
1 files changed, 0 insertions, 278 deletions
diff --git a/deprecated/org.eclipse.papyrus.uml.diagram.sequence_initial-kepler/src/org/eclipse/papyrus/uml/diagram/sequence/edit/parts/Message6EditPart.java b/deprecated/org.eclipse.papyrus.uml.diagram.sequence_initial-kepler/src/org/eclipse/papyrus/uml/diagram/sequence/edit/parts/Message6EditPart.java
deleted file mode 100644
index 33f8ff2b655..00000000000
--- a/deprecated/org.eclipse.papyrus.uml.diagram.sequence_initial-kepler/src/org/eclipse/papyrus/uml/diagram/sequence/edit/parts/Message6EditPart.java
+++ /dev/null
@@ -1,278 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2009 CEA
- *
- *
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Atos Origin - Initial API and implementation
- *
- *****************************************************************************/
-package org.eclipse.papyrus.uml.diagram.sequence.edit.parts;
-
-import org.eclipse.draw2d.ArrowLocator;
-import org.eclipse.draw2d.ColorConstants;
-import org.eclipse.draw2d.Connection;
-import org.eclipse.draw2d.ConnectionLocator;
-import org.eclipse.draw2d.Cursors;
-import org.eclipse.draw2d.PolylineDecoration;
-import org.eclipse.draw2d.RotatableDecoration;
-import org.eclipse.draw2d.geometry.Dimension;
-import org.eclipse.draw2d.geometry.PointList;
-import org.eclipse.emf.common.notify.Notification;
-import org.eclipse.gef.EditPart;
-import org.eclipse.gef.EditPolicy;
-import org.eclipse.gef.Request;
-import org.eclipse.gmf.runtime.diagram.ui.editparts.ITreeBranchEditPart;
-import org.eclipse.gmf.runtime.diagram.ui.editpolicies.EditPolicyRoles;
-import org.eclipse.gmf.runtime.diagram.ui.requests.CreateUnspecifiedTypeRequest;
-import org.eclipse.gmf.runtime.draw2d.ui.figures.WrappingLabel;
-import org.eclipse.gmf.runtime.notation.View;
-import org.eclipse.papyrus.uml.diagram.common.editpolicies.AppliedStereotypeLinkLabelDisplayEditPolicy;
-import org.eclipse.papyrus.uml.diagram.sequence.edit.policies.CreationOnMessageEditPolicy;
-import org.eclipse.papyrus.uml.diagram.sequence.edit.policies.LifelineChildGraphicalNodeEditPolicy;
-import org.eclipse.papyrus.uml.diagram.sequence.edit.policies.Message6ItemSemanticEditPolicy;
-import org.eclipse.papyrus.uml.diagram.sequence.edit.policies.MessageConnectionEditPolicy;
-import org.eclipse.papyrus.uml.diagram.sequence.edit.policies.MessageConnectionLineSegEditPolicy;
-import org.eclipse.papyrus.uml.diagram.sequence.figures.EllipseDecoration;
-import org.eclipse.papyrus.uml.diagram.sequence.util.SequenceUtil;
-import org.eclipse.swt.SWT;
-import org.eclipse.swt.graphics.Font;
-import org.eclipse.swt.widgets.Display;
-import org.eclipse.uml2.uml.Message;
-import org.eclipse.uml2.uml.MessageSort;
-
-/**
- * @generated
- */
-public class Message6EditPart extends AbstractMessageEditPart
-
-implements ITreeBranchEditPart {
-
- /**
- * @generated
- */
- public static final int VISUAL_ID = 4008;
-
- /**
- * @generated
- */
- public Message6EditPart(View view) {
- super(view);
- }
-
- /**
- * Installs a specific message router on the edit part.
- *
- * @generated NOT
- */
- protected void installRouter() {
- getConnectionFigure().setConnectionRouter(LifelineChildGraphicalNodeEditPolicy.messageRouter);
- getConnectionFigure().setCursor(Cursors.ARROW);
- refreshBendpoints();
- }
-
- /**
- * Ignore routing style since we are using a custom router and a custom ConnectionBendpointEditPolicy.
- */
- protected void refreshRoutingStyles() {
- }
-
- /**
- * @generated
- */
- protected void createDefaultEditPolicies() {
- super.createDefaultEditPolicies();
- installEditPolicy(EditPolicyRoles.SEMANTIC_ROLE, new Message6ItemSemanticEditPolicy());
- installEditPolicy(EditPolicyRoles.CREATION_ROLE, new CreationOnMessageEditPolicy());
- installEditPolicy(EditPolicy.CONNECTION_ROLE, new MessageConnectionEditPolicy());
- installEditPolicy(AppliedStereotypeLinkLabelDisplayEditPolicy.STEREOTYPE_LABEL_POLICY, new AppliedStereotypeLinkLabelDisplayEditPolicy());
- installEditPolicy(EditPolicy.CONNECTION_BENDPOINTS_ROLE, new MessageConnectionLineSegEditPolicy());
- }
-
- /**
- * @generated
- */
- protected boolean addFixedChild(EditPart childEditPart) {
- if(childEditPart instanceof MessageName6EditPart) {
- ((MessageName6EditPart)childEditPart).setLabel(getPrimaryShape().getFigureMessageLostLabelFigure());
- return true;
- }
- if(childEditPart instanceof MessageLostAppliedStereotypeEditPart) {
- ((MessageLostAppliedStereotypeEditPart)childEditPart).setLabel(getPrimaryShape().getAppliedStereotypeLabel());
- return true;
- }
- return false;
- }
-
- /**
- * @generated
- */
- protected void addChildVisual(EditPart childEditPart, int index) {
- if(addFixedChild(childEditPart)) {
- return;
- }
- super.addChildVisual(childEditPart, -1);
- }
-
- /**
- * @generated
- */
- protected boolean removeFixedChild(EditPart childEditPart) {
- if(childEditPart instanceof MessageName6EditPart) {
- return true;
- }
- if(childEditPart instanceof MessageLostAppliedStereotypeEditPart) {
- return true;
- }
- return false;
- }
-
- /**
- * @generated
- */
- protected void removeChildVisual(EditPart childEditPart) {
- if(removeFixedChild(childEditPart)) {
- return;
- }
- super.removeChildVisual(childEditPart);
- }
-
- /**
- * Creates figure for this edit part.
- *
- * Body of this method does not depend on settings in generation model so you may safely remove
- * <i>generated</i> tag and modify it.
- *
- * @generated
- */
-
- protected Connection createConnectionFigure() {
- return new MessageLost();
- }
-
- /**
- * @generated
- */
- public MessageLost getPrimaryShape() {
- return (MessageLost)getFigure();
- }
- /**
- * @generated NOT inherits from UMLEdgeFigure to manage stereotype label
- */
- public class MessageLost extends MessageFigure {
-
- /**
- * @generated
- */
- private WrappingLabel fFigureMessageLostLabelFigure;
-
- /**
- * @generated
- */
- private WrappingLabel fAppliedStereotypeLabel;
-
- /**
- * @generated NOT call the super constructor
- */
- public MessageLost() {
- super();
- this.setForegroundColor(ColorConstants.black);
-
- createContents();
- setTargetDecoration(createTargetDecoration());
- }
-
- /**
- * @generated NOT
- */
- protected void createContents() {
- super.createContents();
-
- fFigureMessageLostLabelFigure = new WrappingLabel();
- fFigureMessageLostLabelFigure.setText("");
-
- fFigureMessageLostLabelFigure.setFont(FFIGUREMESSAGELOSTLABELFIGURE_FONT);
-
- this.add(fFigureMessageLostLabelFigure);
- }
-
- /**
- * @generated
- */
- private RotatableDecoration createTargetDecoration() {
- EllipseDecoration df = new EllipseDecoration();
- df.setAlwaysFill(true);
- df.setPreferredSize(new Dimension(10, 10));
- add(df, new ArrowLocator(this, ConnectionLocator.TARGET)); // child figure
-
- PolylineDecoration arrow = new PolylineDecoration();
- arrow.setForegroundColor(getForegroundColor());
- PointList pl = new PointList();
- pl.addPoint(getMapMode().DPtoLP(-2), getMapMode().DPtoLP(2));
- pl.addPoint(getMapMode().DPtoLP(0), getMapMode().DPtoLP(0));
- pl.addPoint(getMapMode().DPtoLP(-2), getMapMode().DPtoLP(-2));
- arrow.setTemplate(pl);
- arrow.setScale(getMapMode().DPtoLP(7), getMapMode().DPtoLP(3));
-
- return arrow;
- }
-
- /**
- * @generated
- */
- public WrappingLabel getFigureMessageLostLabelFigure() {
- return fFigureMessageLostLabelFigure;
- }
-
- /**
- * @generated NOT get the stereotype label of super class
- */
- public WrappingLabel getAppliedStereotypeLabel() {
- return super.getAppliedStereotypeLabel();
- }
-
- }
-
- /**
- * @generated
- */
- static final Font FFIGUREMESSAGELOSTLABELFIGURE_FONT = new Font(Display.getCurrent(), "SANS", 9, SWT.NORMAL);
-
- /**
- * Block message sort modification
- */
- @Override
- protected void handleNotificationEvent(Notification notification) {
- SequenceUtil.handleMessageSortChange(getEditingDomain(), notification, (Message)resolveSemanticElement(), MessageSort.ASYNCH_CALL_LITERAL);
- super.handleNotificationEvent(notification);
- }
-
- /**
- * @generated NOT Override for redirecting creation request to the lifeline
- */
- @Override
- public void showSourceFeedback(Request request) {
- if(request instanceof CreateUnspecifiedTypeRequest) {
- getSource().showSourceFeedback(request);
- getTarget().showSourceFeedback(request);
- }
- super.showSourceFeedback(request);
- }
-
- /**
- * @generated NOT Override for redirecting creation request to the lifeline
- */
- @Override
- public void eraseSourceFeedback(Request request) {
- if(request instanceof CreateUnspecifiedTypeRequest) {
- getSource().eraseSourceFeedback(request);
- getTarget().eraseSourceFeedback(request);
- }
- super.eraseSourceFeedback(request);
- }
-
-}

Back to the top