blob: 35f150647b6bc02487ebcf1cd6a745c81388d9ec [file] [log] [blame]
/**
* Copyright (c) 2014 Fraunhofer FOKUS
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Max Bureck
*/
package org.eclipse.upr.bpmnprof;
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 -->
*
* <!-- begin-model-doc -->
* <p>From package BPMNProfile::Process::Data.</p>
* <p>From package BPMNProfile::Process::HumanInteraction.</p>
* <p>From package BPMNProfile::Collaboration.</p>
* <p>From package BPMNProfile::CoreStructure::Foundation.</p>
* <p>From package BPMNProfile::CoreStructure::Service.</p>
* <p>From package BPMNProfile::Collaboration::Conversation.</p>
* <p>From package BPMNProfile::CoreStructure.</p>
* <p>From package BPMNProfile::Process::Activities.</p>
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.upr.bpmnprof.DataObject#isCollection <em>Is Collection</em>}</li>
* <li>{@link org.eclipse.upr.bpmnprof.DataObject#getBase_DataStoreNode <em>Base Data Store Node</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#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.upr.bpmnprof.BpmnprofPackage#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.upr.bpmnprof.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.upr.bpmnprof.BpmnprofPackage#getDataObject_Base_DataStoreNode()
* @model required="true" ordered="false"
* @generated
*/
DataStoreNode getBase_DataStoreNode();
/**
* Sets the value of the '{@link org.eclipse.upr.bpmnprof.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