blob: 7f28bcb0850ca20b14491c73f85540d0beba6fb0 [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.emf.common.util.EList;
import org.eclipse.uml2.uml.Enumeration;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Category</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.Category#getBase_Enumeration <em>Base Enumeration</em>}</li>
* <li>{@link org.eclipse.upr.bpmnprof.Category#getCategoryValue <em>Category Value</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getCategory()
* @model
* @generated
*/
public interface Category extends RootElement {
/**
* Returns the value of the '<em><b>Base Enumeration</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Enumeration</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 Enumeration</em>' reference.
* @see #setBase_Enumeration(Enumeration)
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getCategory_Base_Enumeration()
* @model required="true" ordered="false"
* @generated
*/
Enumeration getBase_Enumeration();
/**
* Sets the value of the '{@link org.eclipse.upr.bpmnprof.Category#getBase_Enumeration <em>Base Enumeration</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Enumeration</em>' reference.
* @see #getBase_Enumeration()
* @generated
*/
void setBase_Enumeration(Enumeration value);
/**
* Returns the value of the '<em><b>Category Value</b></em>' reference list.
* The list contents are of type {@link org.eclipse.upr.bpmnprof.CategoryValue}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Category Value</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Category Value</em>' reference list.
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getCategory_CategoryValue()
* @model required="true" transient="true" volatile="true" derived="true" ordered="false"
* @generated
*/
EList<CategoryValue> getCategoryValue();
} // Category