blob: c28a8404527b6da2ace96f4036799d807972694a [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 org.eclipse.uml2.uml.ActivityPartition;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Group</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* <p>From package BPMNProfile::CoreStructure::Common::Artifacts.</p>
* <p>From package BPMNProfile::CoreStructure::Common.</p>
* <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.Group#getBase_ActivityPartition <em>Base Activity Partition</em>}</li>
* <li>{@link org.eclipse.upr.bpmnprof.Group#get_categoryValueRef <em>category Value Ref</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getGroup()
* @model
* @generated
*/
public interface Group extends BPMNArtifact {
/**
* Returns the value of the '<em><b>Base Activity Partition</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Activity Partition</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 Activity Partition</em>' reference.
* @see #setBase_ActivityPartition(ActivityPartition)
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getGroup_Base_ActivityPartition()
* @model required="true" ordered="false"
* @generated
*/
ActivityPartition getBase_ActivityPartition();
/**
* Sets the value of the '{@link org.eclipse.upr.bpmnprof.Group#getBase_ActivityPartition <em>Base Activity Partition</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Activity Partition</em>' reference.
* @see #getBase_ActivityPartition()
* @generated
*/
void setBase_ActivityPartition(ActivityPartition value);
/**
* Returns the value of the '<em><b>category Value Ref</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>category Value 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>category Value Ref</em>' reference.
* @see #set_categoryValueRef(CategoryValue)
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getGroup__categoryValueRef()
* @model ordered="false"
* annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName=' categoryValueRef'"
* @generated
*/
CategoryValue get_categoryValueRef();
/**
* Sets the value of the '{@link org.eclipse.upr.bpmnprof.Group#get_categoryValueRef <em>category Value Ref</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>category Value Ref</em>' reference.
* @see #get_categoryValueRef()
* @generated
*/
void set_categoryValueRef(CategoryValue value);
} // Group