Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/bpmn/org.eclipse.papyrus.bpmn/src/org/eclipse/papyrus/bpmn/BPMNProfile/DataObject.java')
-rw-r--r--extraplugins/bpmn/org.eclipse.papyrus.bpmn/src/org/eclipse/papyrus/bpmn/BPMNProfile/DataObject.java95
1 files changed, 95 insertions, 0 deletions
diff --git a/extraplugins/bpmn/org.eclipse.papyrus.bpmn/src/org/eclipse/papyrus/bpmn/BPMNProfile/DataObject.java b/extraplugins/bpmn/org.eclipse.papyrus.bpmn/src/org/eclipse/papyrus/bpmn/BPMNProfile/DataObject.java
new file mode 100644
index 00000000000..b8734e57335
--- /dev/null
+++ b/extraplugins/bpmn/org.eclipse.papyrus.bpmn/src/org/eclipse/papyrus/bpmn/BPMNProfile/DataObject.java
@@ -0,0 +1,95 @@
+/**
+ */
+package org.eclipse.papyrus.bpmn.BPMNProfile;
+
+import java.util.Map;
+
+import org.eclipse.emf.common.util.DiagnosticChain;
+
+import org.eclipse.uml2.uml.DataStoreNode;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Data Object</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * </p>
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.bpmn.BPMNProfile.DataObject#isCollection <em>Is Collection</em>}</li>
+ * <li>{@link org.eclipse.papyrus.bpmn.BPMNProfile.DataObject#getBase_DataStoreNode <em>Base Data Store Node</em>}</li>
+ * </ul>
+ *
+ * @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getDataObject()
+ * @model
+ * @generated
+ */
+public interface DataObject extends FlowElement, ItemAwareElement {
+ /**
+ * Returns the value of the '<em><b>Is Collection</b></em>' attribute.
+ * The default value is <code>"false"</code>.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Is Collection</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Is Collection</em>' attribute.
+ * @see #setIsCollection(boolean)
+ * @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getDataObject_IsCollection()
+ * @model default="false" dataType="org.eclipse.uml2.types.Boolean" required="true" ordered="false"
+ * @generated
+ */
+ boolean isCollection();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.bpmn.BPMNProfile.DataObject#isCollection <em>Is Collection</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Is Collection</em>' attribute.
+ * @see #isCollection()
+ * @generated
+ */
+ void setIsCollection(boolean value);
+
+ /**
+ * Returns the value of the '<em><b>Base Data Store Node</b></em>' reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Base Data Store Node</em>' reference isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Base Data Store Node</em>' reference.
+ * @see #setBase_DataStoreNode(DataStoreNode)
+ * @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getDataObject_Base_DataStoreNode()
+ * @model required="true" ordered="false"
+ * @generated
+ */
+ DataStoreNode getBase_DataStoreNode();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.bpmn.BPMNProfile.DataObject#getBase_DataStoreNode <em>Base Data Store Node</em>}' reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Base Data Store Node</em>' reference.
+ * @see #getBase_DataStoreNode()
+ * @generated
+ */
+ void setBase_DataStoreNode(DataStoreNode value);
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * DataObject DataState property shall reuse UML::CentralBuffer property inState
+ * @param diagnostics The chain of diagnostics to which problems are to be appended.
+ * @param context The cache of context-specific information.
+ * <!-- end-model-doc -->
+ * @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='DataObject.dataState'"
+ * @generated
+ */
+ boolean DataObjectdataState(DiagnosticChain diagnostics, Map<Object, Object> context);
+
+} // DataObject

Back to the top