Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.activity/custom-src/org/eclipse/papyrus/uml/diagram/activity/edit/part/CustomExceptionHandlerIconEditPart.java')
-rw-r--r--plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.activity/custom-src/org/eclipse/papyrus/uml/diagram/activity/edit/part/CustomExceptionHandlerIconEditPart.java160
1 files changed, 80 insertions, 80 deletions
diff --git a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.activity/custom-src/org/eclipse/papyrus/uml/diagram/activity/edit/part/CustomExceptionHandlerIconEditPart.java b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.activity/custom-src/org/eclipse/papyrus/uml/diagram/activity/edit/part/CustomExceptionHandlerIconEditPart.java
index c19aafd64e8..9fd6fbf1a7c 100644
--- a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.activity/custom-src/org/eclipse/papyrus/uml/diagram/activity/edit/part/CustomExceptionHandlerIconEditPart.java
+++ b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.activity/custom-src/org/eclipse/papyrus/uml/diagram/activity/edit/part/CustomExceptionHandlerIconEditPart.java
@@ -1,80 +1,80 @@
-/*****************************************************************************
- * Copyright (c) 2011 Atos.
- *
- *
- * 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 - Initial API and implementation
- * Arthur Daussy Bug 367279 - [Activity Diagram] Activity Diagram should be able to handle correctly Exception Handler element
- *
- *****************************************************************************/
-package org.eclipse.papyrus.uml.diagram.activity.edit.part;
-
-import org.eclipse.draw2d.IFigure;
-import org.eclipse.gmf.runtime.notation.View;
-import org.eclipse.papyrus.uml.diagram.activity.edit.parts.ExceptionHandlerIconEditPart;
-import org.eclipse.papyrus.uml.diagram.activity.figures.InterruptibleEdgeExternalIconFigure;
-import org.eclipse.swt.graphics.Image;
-
-/**
- * Customization of {@link ExceptionHandlerIconEditPart} in order to make it able to handle Specific Label Helper
- *
- * @author arthur daussy
- *
- */
-public class CustomExceptionHandlerIconEditPart extends ExceptionHandlerIconEditPart {
-
- public CustomExceptionHandlerIconEditPart(View view) {
- super(view);
- }
-
- /**
- * Make it handle with {@link InterruptibleEdgeExternalIconFigure}
- */
- @Override
- protected String getLabelTextHelper(IFigure figure) {
- if (figure instanceof InterruptibleEdgeExternalIconFigure) {
- return "";
- }
- return super.getLabelTextHelper(figure);
- }
-
- /**
- * Make it handle with {@link InterruptibleEdgeExternalIconFigure}
- */
- @Override
- protected void setLabelTextHelper(IFigure figure, String text) {
- if (figure instanceof InterruptibleEdgeExternalIconFigure) {
- // Label can not be set on this figure
- return;
- }
- super.getLabelTextHelper(figure);
- }
-
- /**
- * Make it handle with {@link InterruptibleEdgeExternalIconFigure}
- */
- @Override
- protected Image getLabelIconHelper(IFigure figure) {
- if (figure instanceof InterruptibleEdgeExternalIconFigure) {
- return ((InterruptibleEdgeExternalIconFigure) figure).getImage();
- }
- return super.getLabelIconHelper(figure);
- }
-
- /**
- * Make it handle with {@link InterruptibleEdgeExternalIconFigure}
- */
- @Override
- protected void setLabelIconHelper(IFigure figure, Image icon) {
- if (figure instanceof InterruptibleEdgeExternalIconFigure) {
- // Icon can not be set on this figure
- return;
- }
- super.setLabelIconHelper(figure, icon);
- }
-}
+/*****************************************************************************
+ * Copyright (c) 2011 Atos.
+ *
+ *
+ * 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 - Initial API and implementation
+ * Arthur Daussy Bug 367279 - [Activity Diagram] Activity Diagram should be able to handle correctly Exception Handler element
+ *
+ *****************************************************************************/
+package org.eclipse.papyrus.uml.diagram.activity.edit.part;
+
+import org.eclipse.draw2d.IFigure;
+import org.eclipse.gmf.runtime.notation.View;
+import org.eclipse.papyrus.uml.diagram.activity.edit.parts.ExceptionHandlerIconEditPart;
+import org.eclipse.papyrus.uml.diagram.activity.figures.InterruptibleEdgeExternalIconFigure;
+import org.eclipse.swt.graphics.Image;
+
+/**
+ * Customization of {@link ExceptionHandlerIconEditPart} in order to make it able to handle Specific Label Helper
+ *
+ * @author arthur daussy
+ *
+ */
+public class CustomExceptionHandlerIconEditPart extends ExceptionHandlerIconEditPart {
+
+ public CustomExceptionHandlerIconEditPart(View view) {
+ super(view);
+ }
+
+ /**
+ * Make it handle with {@link InterruptibleEdgeExternalIconFigure}
+ */
+ @Override
+ protected String getLabelTextHelper(IFigure figure) {
+ if (figure instanceof InterruptibleEdgeExternalIconFigure) {
+ return "";
+ }
+ return super.getLabelTextHelper(figure);
+ }
+
+ /**
+ * Make it handle with {@link InterruptibleEdgeExternalIconFigure}
+ */
+ @Override
+ protected void setLabelTextHelper(IFigure figure, String text) {
+ if (figure instanceof InterruptibleEdgeExternalIconFigure) {
+ // Label can not be set on this figure
+ return;
+ }
+ super.getLabelTextHelper(figure);
+ }
+
+ /**
+ * Make it handle with {@link InterruptibleEdgeExternalIconFigure}
+ */
+ @Override
+ protected Image getLabelIconHelper(IFigure figure) {
+ if (figure instanceof InterruptibleEdgeExternalIconFigure) {
+ return ((InterruptibleEdgeExternalIconFigure) figure).getImage();
+ }
+ return super.getLabelIconHelper(figure);
+ }
+
+ /**
+ * Make it handle with {@link InterruptibleEdgeExternalIconFigure}
+ */
+ @Override
+ protected void setLabelIconHelper(IFigure figure, Image icon) {
+ if (figure instanceof InterruptibleEdgeExternalIconFigure) {
+ // Icon can not be set on this figure
+ return;
+ }
+ super.setLabelIconHelper(figure, icon);
+ }
+}

Back to the top