aboutsummaryrefslogtreecommitdiffstats
path: root/rba.model.core/src/rba/core/ModelElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'rba.model.core/src/rba/core/ModelElement.java')
-rw-r--r--rba.model.core/src/rba/core/ModelElement.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/rba.model.core/src/rba/core/ModelElement.java b/rba.model.core/src/rba/core/ModelElement.java
new file mode 100644
index 0000000..701b749
--- /dev/null
+++ b/rba.model.core/src/rba/core/ModelElement.java
@@ -0,0 +1,53 @@
+/**
+ */
+package rba.core;
+
+import org.eclipse.emf.ecore.EObject;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Model Element</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <!-- begin-model-doc -->
+ *
+ * <!-- end-model-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * </p>
+ * <ul>
+ * <li>{@link rba.core.ModelElement#getDescription <em>Description</em>}</li>
+ * </ul>
+ *
+ * @see rba.core.RBACorePackage#getModelElement()
+ * @model abstract="true"
+ * @generated
+ */
+public interface ModelElement extends EObject {
+ /**
+ * Returns the value of the '<em><b>Description</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ *
+ * <!-- end-model-doc -->
+ * @return the value of the '<em>Description</em>' attribute.
+ * @see #setDescription(String)
+ * @see rba.core.RBACorePackage#getModelElement_Description()
+ * @model
+ * @generated
+ */
+ String getDescription();
+
+ /**
+ * Sets the value of the '{@link rba.core.ModelElement#getDescription <em>Description</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Description</em>' attribute.
+ * @see #getDescription()
+ * @generated
+ */
+ void setDescription(String value);
+
+} // ModelElement