summaryrefslogtreecommitdiffstats
path: root/rba.model.core/src/rba/core/SugarExpression.java
diff options
context:
space:
mode:
Diffstat (limited to 'rba.model.core/src/rba/core/SugarExpression.java')
-rw-r--r--rba.model.core/src/rba/core/SugarExpression.java40
1 files changed, 40 insertions, 0 deletions
diff --git a/rba.model.core/src/rba/core/SugarExpression.java b/rba.model.core/src/rba/core/SugarExpression.java
new file mode 100644
index 0000000..d676f02
--- /dev/null
+++ b/rba.model.core/src/rba/core/SugarExpression.java
@@ -0,0 +1,40 @@
+/**
+ */
+package rba.core;
+
+import org.eclipse.emf.ecore.EObject;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Sugar Expression</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ *
+ * @see rba.core.RBACorePackage#getSugarExpression()
+ * @model interface="true" abstract="true"
+ * @generated
+ */
+public interface SugarExpression extends EObject {
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ *
+ * <!-- end-model-doc -->
+ * @model required="true"
+ * @generated
+ */
+ boolean canExpand();
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * @return Expression that expanded the syntax sugar expression.
+ * <!-- end-model-doc -->
+ * @model kind="operation"
+ * @generated
+ */
+ Expression getExpanded();
+
+} // SugarExpression