blob: edd40ddc870f72f4da19656b9989483577bf4045 [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.CallBehaviorAction;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Call Activity</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* <p>From package BPMNProfile::Process::Activities.</p>
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.upr.bpmnprof.CallActivity#getBase_CallBehaviorAction <em>Base Call Behavior Action</em>}</li>
* <li>{@link org.eclipse.upr.bpmnprof.CallActivity#getCalledElementRef <em>Called Element Ref</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getCallActivity()
* @model
* @generated
*/
public interface CallActivity extends BPMNActivity {
/**
* Returns the value of the '<em><b>Base Call Behavior Action</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Call Behavior Action</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 Call Behavior Action</em>' reference.
* @see #setBase_CallBehaviorAction(CallBehaviorAction)
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getCallActivity_Base_CallBehaviorAction()
* @model required="true" ordered="false"
* @generated
*/
CallBehaviorAction getBase_CallBehaviorAction();
/**
* Sets the value of the '{@link org.eclipse.upr.bpmnprof.CallActivity#getBase_CallBehaviorAction <em>Base Call Behavior Action</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Call Behavior Action</em>' reference.
* @see #getBase_CallBehaviorAction()
* @generated
*/
void setBase_CallBehaviorAction(CallBehaviorAction value);
/**
* Returns the value of the '<em><b>Called Element Ref</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Called Element 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>Called Element Ref</em>' reference.
* @see #setCalledElementRef(CallableElement)
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getCallActivity_CalledElementRef()
* @model transient="true" volatile="true" derived="true" ordered="false"
* @generated
*/
CallableElement getCalledElementRef();
/**
* Sets the value of the '{@link org.eclipse.upr.bpmnprof.CallActivity#getCalledElementRef <em>Called Element Ref</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Called Element Ref</em>' reference.
* @see #getCalledElementRef()
* @generated
*/
void setCalledElementRef(CallableElement value);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* self.calledElementRef = self.base_CallBehaviorAction.behavior.extension_CallableElement
* @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='CallActivity.calledElementRef.values'"
* @generated
*/
boolean CallActivitycalledElementRefvalues(DiagnosticChain diagnostics, Map<Object, Object> context);
} // CallActivity