Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnsgar Radermacher2014-04-27 08:44:19 +0000
committerAnsgar Radermacher2014-04-27 08:45:03 +0000
commitd5ba9e67bf369bf19be940d2910671363e4dce61 (patch)
tree1bf32b8de4e62d7c1a487eb178ba8c4ad0791ef0 /extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/infrastructure/elements/EAPort.java
parent87baaaa8c423a5f7b405e8aecb3e074918fcc03b (diff)
downloadorg.eclipse.papyrus-d5ba9e67bf369bf19be940d2910671363e4dce61.tar.gz
org.eclipse.papyrus-d5ba9e67bf369bf19be940d2910671363e4dce61.tar.xz
org.eclipse.papyrus-d5ba9e67bf369bf19be940d2910671363e4dce61.zip
Bug 433584 - [EAST-ADL] Switch to new EAST-ADL version 2.1.12
Diffstat (limited to 'extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/infrastructure/elements/EAPort.java')
-rw-r--r--extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/infrastructure/elements/EAPort.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/infrastructure/elements/EAPort.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/infrastructure/elements/EAPort.java
new file mode 100644
index 00000000000..c0d6c1021bf
--- /dev/null
+++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/infrastructure/elements/EAPort.java
@@ -0,0 +1,51 @@
+/**
+ */
+package org.eclipse.papyrus.eastadl.infrastructure.elements;
+
+import org.eclipse.emf.ecore.EObject;
+import org.eclipse.uml2.uml.Port;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>EA Port</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.eastadl.infrastructure.elements.EAPort#getBase_Port <em>Base Port</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.papyrus.eastadl.infrastructure.elements.ElementsPackage#getEAPort()
+ * @model abstract="true"
+ * @generated
+ */
+public interface EAPort extends EObject {
+ /**
+ * Returns the value of the '<em><b>Base Port</b></em>' reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Base Port</em>' reference isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Base Port</em>' reference.
+ * @see #setBase_Port(Port)
+ * @see org.eclipse.papyrus.eastadl.infrastructure.elements.ElementsPackage#getEAPort_Base_Port()
+ * @model required="true" ordered="false"
+ * @generated
+ */
+ Port getBase_Port();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.eastadl.infrastructure.elements.EAPort#getBase_Port <em>Base Port</em>}' reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Base Port</em>' reference.
+ * @see #getBase_Port()
+ * @generated
+ */
+ void setBase_Port(Port value);
+
+} // EAPort

Back to the top