blob: 5dc4932008cb5460843c6d213c1c3fae5261a52c [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Data Store</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.DataStore#getCapacity <em>Capacity</em>}</li>
* <li>{@link org.eclipse.upr.bpmnprof.DataStore#isUnlimited <em>Is Unlimited</em>}</li>
* <li>{@link org.eclipse.upr.bpmnprof.DataStore#getBase_Class <em>Base Class</em>}</li>
* <li>{@link org.eclipse.upr.bpmnprof.DataStore#getItemSubjectRef <em>Item Subject Ref</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getDataStore()
* @model
* @generated
*/
public interface DataStore extends RootElement {
/**
* Returns the value of the '<em><b>Capacity</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Capacity</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Capacity</em>' attribute.
* @see #setCapacity(int)
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getDataStore_Capacity()
* @model dataType="org.eclipse.uml2.types.Integer" ordered="false"
* @generated
*/
int getCapacity();
/**
* Sets the value of the '{@link org.eclipse.upr.bpmnprof.DataStore#getCapacity <em>Capacity</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Capacity</em>' attribute.
* @see #getCapacity()
* @generated
*/
void setCapacity(int value);
/**
* Returns the value of the '<em><b>Is Unlimited</b></em>' attribute.
* The default value is <code>"true"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Is Unlimited</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 Unlimited</em>' attribute.
* @see #setIsUnlimited(boolean)
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getDataStore_IsUnlimited()
* @model default="true" dataType="org.eclipse.uml2.types.Boolean" required="true" ordered="false"
* @generated
*/
boolean isUnlimited();
/**
* Sets the value of the '{@link org.eclipse.upr.bpmnprof.DataStore#isUnlimited <em>Is Unlimited</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Is Unlimited</em>' attribute.
* @see #isUnlimited()
* @generated
*/
void setIsUnlimited(boolean value);
/**
* Returns the value of the '<em><b>Base Class</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Class</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 Class</em>' reference.
* @see #setBase_Class(org.eclipse.uml2.uml.Class)
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getDataStore_Base_Class()
* @model required="true" ordered="false"
* @generated
*/
org.eclipse.uml2.uml.Class getBase_Class();
/**
* Sets the value of the '{@link org.eclipse.upr.bpmnprof.DataStore#getBase_Class <em>Base Class</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Class</em>' reference.
* @see #getBase_Class()
* @generated
*/
void setBase_Class(org.eclipse.uml2.uml.Class value);
/**
* Returns the value of the '<em><b>Item Subject Ref</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Item Subject Ref</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Item Subject Ref</em>' reference.
* @see #setItemSubjectRef(ItemDefinition)
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getDataStore_ItemSubjectRef()
* @model transient="true" volatile="true" derived="true" ordered="false"
* annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='itemSubjectRef '"
* @generated
*/
ItemDefinition getItemSubjectRef();
/**
* Sets the value of the '{@link org.eclipse.upr.bpmnprof.DataStore#getItemSubjectRef <em>Item Subject Ref</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Item Subject Ref</em>' reference.
* @see #getItemSubjectRef()
* @generated
*/
void setItemSubjectRef(ItemDefinition value);
} // DataStore