summaryrefslogtreecommitdiffstats
path: root/rba.model.core/src/rba/core/ContentState.java
diff options
context:
space:
mode:
Diffstat (limited to 'rba.model.core/src/rba/core/ContentState.java')
-rw-r--r--rba.model.core/src/rba/core/ContentState.java79
1 files changed, 79 insertions, 0 deletions
diff --git a/rba.model.core/src/rba/core/ContentState.java b/rba.model.core/src/rba/core/ContentState.java
new file mode 100644
index 0000000..2cea042
--- /dev/null
+++ b/rba.model.core/src/rba/core/ContentState.java
@@ -0,0 +1,79 @@
+/**
+ */
+package rba.core;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Content State</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <!-- begin-model-doc -->
+ *
+ * <!-- end-model-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * </p>
+ * <ul>
+ * <li>{@link rba.core.ContentState#getValue <em>Value</em>}</li>
+ * <li>{@link rba.core.ContentState#getOwner <em>Owner</em>}</li>
+ * </ul>
+ *
+ * @see rba.core.RBACorePackage#getContentState()
+ * @model abstract="true"
+ * @generated
+ */
+public interface ContentState extends RuleObject {
+ /**
+ * Returns the value of the '<em><b>Value</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ *
+ * <!-- end-model-doc -->
+ * @return the value of the '<em>Value</em>' containment reference.
+ * @see #setValue(Expression)
+ * @see rba.core.RBACorePackage#getContentState_Value()
+ * @model containment="true" required="true"
+ * @generated
+ */
+ Expression getValue();
+
+ /**
+ * Sets the value of the '{@link rba.core.ContentState#getValue <em>Value</em>}' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Value</em>' containment reference.
+ * @see #getValue()
+ * @generated
+ */
+ void setValue(Expression value);
+
+ /**
+ * Returns the value of the '<em><b>Owner</b></em>' container reference.
+ * It is bidirectional and its opposite is '{@link rba.core.Content#getStates <em>States</em>}'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ *
+ * <!-- end-model-doc -->
+ * @return the value of the '<em>Owner</em>' container reference.
+ * @see #setOwner(Content)
+ * @see rba.core.RBACorePackage#getContentState_Owner()
+ * @see rba.core.Content#getStates
+ * @model opposite="states" transient="false"
+ * @generated
+ */
+ Content getOwner();
+
+ /**
+ * Sets the value of the '{@link rba.core.ContentState#getOwner <em>Owner</em>}' container reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Owner</em>' container reference.
+ * @see #getOwner()
+ * @generated
+ */
+ void setOwner(Content value);
+
+} // ContentState