blob: 74abfe7fa000a3e0c382bd4157d9b0ddc5c6a56b [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.emf.common.util.EList;
import org.eclipse.uml2.uml.InformationFlow;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Conversation Node</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* <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.ConversationNode#getBase_InformationFlow <em>Base Information Flow</em>}</li>
* <li>{@link org.eclipse.upr.bpmnprof.ConversationNode#getMessageFlowRefs <em>Message Flow Refs</em>}</li>
* <li>{@link org.eclipse.upr.bpmnprof.ConversationNode#getCorrelationKeys <em>Correlation Keys</em>}</li>
* <li>{@link org.eclipse.upr.bpmnprof.ConversationNode#getParticipantRefs <em>Participant Refs</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getConversationNode()
* @model abstract="true"
* @generated
*/
public interface ConversationNode extends InteractionNode {
/**
* Returns the value of the '<em><b>Base Information Flow</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Information Flow</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 Information Flow</em>' reference.
* @see #setBase_InformationFlow(InformationFlow)
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getConversationNode_Base_InformationFlow()
* @model required="true" ordered="false"
* @generated
*/
InformationFlow getBase_InformationFlow();
/**
* Sets the value of the '{@link org.eclipse.upr.bpmnprof.ConversationNode#getBase_InformationFlow <em>Base Information Flow</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Information Flow</em>' reference.
* @see #getBase_InformationFlow()
* @generated
*/
void setBase_InformationFlow(InformationFlow value);
/**
* Returns the value of the '<em><b>Message Flow Refs</b></em>' reference list.
* The list contents are of type {@link org.eclipse.upr.bpmnprof.MessageFlow}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Message Flow Refs</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>Message Flow Refs</em>' reference list.
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getConversationNode_MessageFlowRefs()
* @model required="true" ordered="false"
* @generated
*/
EList<MessageFlow> getMessageFlowRefs();
/**
* Returns the value of the '<em><b>Correlation Keys</b></em>' reference list.
* The list contents are of type {@link org.eclipse.upr.bpmnprof.CorrelationKey}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Correlation Keys</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>Correlation Keys</em>' reference list.
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getConversationNode_CorrelationKeys()
* @model required="true" ordered="false"
* @generated
*/
EList<CorrelationKey> getCorrelationKeys();
/**
* Returns the value of the '<em><b>Participant Refs</b></em>' reference list.
* The list contents are of type {@link org.eclipse.upr.bpmnprof.Participant}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Participant Refs</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>Participant Refs</em>' reference list.
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getConversationNode_ParticipantRefs()
* @model lower="2" transient="true" volatile="true" derived="true" ordered="false"
* @generated
*/
EList<Participant> getParticipantRefs();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* ConversationNode::/participantRefs : Participant [2..*] = the informationSource and informationTarget on the InformationFlow
* @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='ConversationNode.participantRefs'"
* @generated
*/
boolean ConversationNodeparticipantRefs(DiagnosticChain diagnostics, Map<Object, Object> context);
} // ConversationNode