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/ErrorModelPrototype_hwTargetInstanceRef.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/ErrorModelPrototype_hwTargetInstanceRef.java')
-rw-r--r--extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/infrastructure/ErrorModelPrototype_hwTargetInstanceRef.java68
1 files changed, 68 insertions, 0 deletions
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/infrastructure/ErrorModelPrototype_hwTargetInstanceRef.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/infrastructure/ErrorModelPrototype_hwTargetInstanceRef.java
new file mode 100644
index 00000000000..73a5a89b4b2
--- /dev/null
+++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/infrastructure/ErrorModelPrototype_hwTargetInstanceRef.java
@@ -0,0 +1,68 @@
+/**
+ */
+package org.eclipse.papyrus.eastadl.infrastructure;
+
+import org.eclipse.emf.common.util.EList;
+import org.eclipse.papyrus.eastadl.structure.hardwaremodeling.HardwareComponentPrototype;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Error Model Prototype hw Target Instance Ref</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.eastadl.infrastructure.ErrorModelPrototype_hwTargetInstanceRef#getHardwareComponentProtype <em>Hardware Component Protype</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.infrastructure.ErrorModelPrototype_hwTargetInstanceRef#getHardwareComponentProtype_context <em>Hardware Component Protype context</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.papyrus.eastadl.infrastructure.InfrastructurePackage#getErrorModelPrototype_hwTargetInstanceRef()
+ * @model
+ * @generated
+ */
+public interface ErrorModelPrototype_hwTargetInstanceRef extends InstanceRef {
+ /**
+ * Returns the value of the '<em><b>Hardware Component Protype</b></em>' reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Hardware Component Protype</em>' reference isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Hardware Component Protype</em>' reference.
+ * @see #setHardwareComponentProtype(HardwareComponentPrototype)
+ * @see org.eclipse.papyrus.eastadl.infrastructure.InfrastructurePackage#getErrorModelPrototype_hwTargetInstanceRef_HardwareComponentProtype()
+ * @model required="true" ordered="false"
+ * @generated
+ */
+ HardwareComponentPrototype getHardwareComponentProtype();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.eastadl.infrastructure.ErrorModelPrototype_hwTargetInstanceRef#getHardwareComponentProtype <em>Hardware Component Protype</em>}' reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Hardware Component Protype</em>' reference.
+ * @see #getHardwareComponentProtype()
+ * @generated
+ */
+ void setHardwareComponentProtype(HardwareComponentPrototype value);
+
+ /**
+ * Returns the value of the '<em><b>Hardware Component Protype context</b></em>' reference list.
+ * The list contents are of type {@link org.eclipse.papyrus.eastadl.structure.hardwaremodeling.HardwareComponentPrototype}.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Hardware Component Protype context</em>' reference list isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Hardware Component Protype context</em>' reference list.
+ * @see org.eclipse.papyrus.eastadl.infrastructure.InfrastructurePackage#getErrorModelPrototype_hwTargetInstanceRef_HardwareComponentProtype_context()
+ * @model ordered="false"
+ * @generated
+ */
+ EList<HardwareComponentPrototype> getHardwareComponentProtype_context();
+
+} // ErrorModelPrototype_hwTargetInstanceRef

Back to the top