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, 63 insertions, 0 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
new file mode 100644
index 00000000000..ea5529820ed
--- /dev/null
+++ b/deprecated/org.eclipse.papyrus.conversion.di2/src/org/eclipse/papyrus/conversion/di2/Polilyne.java
@@ -0,0 +1,63 @@
+/**
+ * <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