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/Type.java')
-rw-r--r--plugins/org.eclipse.etrice.core.room/src-gen/org/eclipse/etrice/core/room/Type.java85
1 files changed, 85 insertions, 0 deletions
diff --git a/plugins/org.eclipse.etrice.core.room/src-gen/org/eclipse/etrice/core/room/Type.java b/plugins/org.eclipse.etrice.core.room/src-gen/org/eclipse/etrice/core/room/Type.java
new file mode 100644
index 000000000..a6ed20c24
--- /dev/null
+++ b/plugins/org.eclipse.etrice.core.room/src-gen/org/eclipse/etrice/core/room/Type.java
@@ -0,0 +1,85 @@
+/**
+ * <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>Type</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.etrice.core.room.Type#getPrim <em>Prim</em>}</li>
+ * <li>{@link org.eclipse.etrice.core.room.Type#getType <em>Type</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.etrice.core.room.RoomPackage#getType()
+ * @model
+ * @generated
+ */
+public interface Type extends EObject
+{
+ /**
+ * Returns the value of the '<em><b>Prim</b></em>' attribute.
+ * The literals are from the enumeration {@link org.eclipse.etrice.core.room.PrimitiveType}.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Prim</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Prim</em>' attribute.
+ * @see org.eclipse.etrice.core.room.PrimitiveType
+ * @see #setPrim(PrimitiveType)
+ * @see org.eclipse.etrice.core.room.RoomPackage#getType_Prim()
+ * @model
+ * @generated
+ */
+ PrimitiveType getPrim();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.etrice.core.room.Type#getPrim <em>Prim</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Prim</em>' attribute.
+ * @see org.eclipse.etrice.core.room.PrimitiveType
+ * @see #getPrim()
+ * @generated
+ */
+ void setPrim(PrimitiveType value);
+
+ /**
+ * Returns the value of the '<em><b>Type</b></em>' reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Type</em>' reference isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Type</em>' reference.
+ * @see #setType(DataClass)
+ * @see org.eclipse.etrice.core.room.RoomPackage#getType_Type()
+ * @model
+ * @generated
+ */
+ DataClass getType();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.etrice.core.room.Type#getType <em>Type</em>}' reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Type</em>' reference.
+ * @see #getType()
+ * @generated
+ */
+ void setType(DataClass value);
+
+} // Type

Back to the top