Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.core.room/src-gen/org/eclipse/etrice/core/room/LayerConnection.java')
-rw-r--r--plugins/org.eclipse.etrice.core.room/src-gen/org/eclipse/etrice/core/room/LayerConnection.java82
1 files changed, 82 insertions, 0 deletions
diff --git a/plugins/org.eclipse.etrice.core.room/src-gen/org/eclipse/etrice/core/room/LayerConnection.java b/plugins/org.eclipse.etrice.core.room/src-gen/org/eclipse/etrice/core/room/LayerConnection.java
new file mode 100644
index 000000000..6e391d91a
--- /dev/null
+++ b/plugins/org.eclipse.etrice.core.room/src-gen/org/eclipse/etrice/core/room/LayerConnection.java
@@ -0,0 +1,82 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+
+ */
+package org.eclipse.etrice.core.room;
+
+import org.eclipse.emf.ecore.EObject;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Layer Connection</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.etrice.core.room.LayerConnection#getFrom <em>From</em>}</li>
+ * <li>{@link org.eclipse.etrice.core.room.LayerConnection#getTo <em>To</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.etrice.core.room.RoomPackage#getLayerConnection()
+ * @model
+ * @generated
+ */
+public interface LayerConnection extends EObject
+{
+ /**
+ * Returns the value of the '<em><b>From</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>From</em>' containment reference isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>From</em>' containment reference.
+ * @see #setFrom(SAPoint)
+ * @see org.eclipse.etrice.core.room.RoomPackage#getLayerConnection_From()
+ * @model containment="true"
+ * @generated
+ */
+ SAPoint getFrom();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.etrice.core.room.LayerConnection#getFrom <em>From</em>}' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>From</em>' containment reference.
+ * @see #getFrom()
+ * @generated
+ */
+ void setFrom(SAPoint value);
+
+ /**
+ * Returns the value of the '<em><b>To</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>To</em>' containment reference isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>To</em>' containment reference.
+ * @see #setTo(SPPoint)
+ * @see org.eclipse.etrice.core.room.RoomPackage#getLayerConnection_To()
+ * @model containment="true"
+ * @generated
+ */
+ SPPoint getTo();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.etrice.core.room.LayerConnection#getTo <em>To</em>}' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>To</em>' containment reference.
+ * @see #getTo()
+ * @generated
+ */
+ void setTo(SPPoint value);
+
+} // LayerConnection

Back to the top