Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated/org.eclipse.papyrus.conversion.di2/src/org/eclipse/papyrus/conversion/di2/Polilyne.java')
-rw-r--r--deprecated/org.eclipse.papyrus.conversion.di2/src/org/eclipse/papyrus/conversion/di2/Polilyne.java63
1 files changed, 0 insertions, 63 deletions
diff --git a/deprecated/org.eclipse.papyrus.conversion.di2/src/org/eclipse/papyrus/conversion/di2/Polilyne.java b/deprecated/org.eclipse.papyrus.conversion.di2/src/org/eclipse/papyrus/conversion/di2/Polilyne.java
deleted file mode 100644
index ea5529820ed..00000000000
--- a/deprecated/org.eclipse.papyrus.conversion.di2/src/org/eclipse/papyrus/conversion/di2/Polilyne.java
+++ /dev/null
@@ -1,63 +0,0 @@
-/**
- * <copyright>
- * </copyright>
- *
- * $Id$
- */
-package org.eclipse.papyrus.conversion.di2;
-
-import org.eclipse.draw2d.geometry.Point;
-
-import org.eclipse.emf.common.util.EList;
-
-/**
- * <!-- begin-user-doc --> A representation of the model object '<em><b>Polilyne</b></em>'. <!--
- * end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * <ul>
- * <li>{@link org.eclipse.papyrus.conversion.di2.Polilyne#getWaypoints <em>Waypoints</em>}</li>
- * <li>{@link org.eclipse.papyrus.conversion.di2.Polilyne#getClosed <em>Closed</em>}</li>
- * </ul>
- * </p>
- *
- * @see org.eclipse.papyrus.conversion.di2.Di2Package#getPolilyne()
- * @model
- * @generated
- */
-public interface Polilyne extends GraphicPrimitive {
-
- /**
- * Returns the value of the '<em><b>Waypoints</b></em>' attribute list. The list contents are of
- * type {@link org.eclipse.draw2d.geometry.Point}. <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Waypoints</em>' attribute list isn't clear, there really should be
- * more of a description here...
- * </p>
- * <!-- end-user-doc -->
- *
- * @return the value of the '<em>Waypoints</em>' attribute list.
- * @see org.eclipse.papyrus.conversion.di2.Di2Package#getPolilyne_Waypoints()
- * @model dataType="com.cea.papyrus.diagraminterchange2.di2.Point" lower="2"
- * @generated
- */
- EList<Point> getWaypoints();
-
- /**
- * Returns the value of the '<em><b>Closed</b></em>' attribute list. The list contents are of
- * type {@link java.lang.Boolean}. <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Closed</em>' attribute list isn't clear, there really should be
- * more of a description here...
- * </p>
- * <!-- end-user-doc -->
- *
- * @return the value of the '<em>Closed</em>' attribute list.
- * @see org.eclipse.papyrus.conversion.di2.Di2Package#getPolilyne_Closed()
- * @model dataType="org.eclipse.uml2.uml.Boolean" lower="2"
- * @generated
- */
- EList<Boolean> getClosed();
-
-} // Polilyne

Back to the top