summaryrefslogtreecommitdiffstats
path: root/rba.model.core/src/rba/core/StateValue.java
diff options
context:
space:
mode:
Diffstat (limited to 'rba.model.core/src/rba/core/StateValue.java')
-rw-r--r--rba.model.core/src/rba/core/StateValue.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/rba.model.core/src/rba/core/StateValue.java b/rba.model.core/src/rba/core/StateValue.java
new file mode 100644
index 0000000..bb085f9
--- /dev/null
+++ b/rba.model.core/src/rba/core/StateValue.java
@@ -0,0 +1,38 @@
+/**
+ */
+package rba.core;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>State Value</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <!-- begin-model-doc -->
+ *
+ * <!-- end-model-doc -->
+ *
+ *
+ * @see rba.core.RBACorePackage#getStateValue()
+ * @model
+ * @generated
+ */
+public interface StateValue extends ContentOperator {
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @model kind="operation"
+ * annotation="http://www.eclipse.org/emf/2002/GenModel body='return \".stateValue()\"; //$NON-NLS-1$'"
+ * @generated
+ */
+ String getSymbol();
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @model kind="operation"
+ * annotation="http://www.eclipse.org/emf/2002/GenModel body='return ExpressionType.VALUE;'"
+ * @generated
+ */
+ ExpressionType getUnderlyingType();
+
+} // StateValue