blob: bbc97f3cbbe7677482a108d5e8b09f12f4c266e5 [file] [log] [blame]
/**
*/
package org.eclipse.papyrus.bpmn.BPMNProfile;
import org.eclipse.uml2.uml.Dependency;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Conversation Link</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.bpmn.BPMNProfile.ConversationLink#getCollaboration <em>Collaboration</em>}</li>
* <li>{@link org.eclipse.papyrus.bpmn.BPMNProfile.ConversationLink#getBase_Dependency <em>Base Dependency</em>}</li>
* <li>{@link org.eclipse.papyrus.bpmn.BPMNProfile.ConversationLink#getTargetRef <em>Target Ref</em>}</li>
* <li>{@link org.eclipse.papyrus.bpmn.BPMNProfile.ConversationLink#getSourceRef <em>Source Ref</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getConversationLink()
* @model
* @generated
*/
public interface ConversationLink extends BaseElement {
/**
* Returns the value of the '<em><b>Collaboration</b></em>' reference.
* It is bidirectional and its opposite is '{@link org.eclipse.papyrus.bpmn.BPMNProfile.BPMNCollaboration#getConversationLinks <em>Conversation Links</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Collaboration</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Collaboration</em>' reference.
* @see #setCollaboration(BPMNCollaboration)
* @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getConversationLink_Collaboration()
* @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNCollaboration#getConversationLinks
* @model opposite="conversationLinks" required="true" ordered="false"
* @generated
*/
BPMNCollaboration getCollaboration();
/**
* Sets the value of the '{@link org.eclipse.papyrus.bpmn.BPMNProfile.ConversationLink#getCollaboration <em>Collaboration</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Collaboration</em>' reference.
* @see #getCollaboration()
* @generated
*/
void setCollaboration(BPMNCollaboration value);
/**
* Returns the value of the '<em><b>Base Dependency</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Dependency</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 Dependency</em>' reference.
* @see #setBase_Dependency(Dependency)
* @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getConversationLink_Base_Dependency()
* @model required="true" ordered="false"
* @generated
*/
Dependency getBase_Dependency();
/**
* Sets the value of the '{@link org.eclipse.papyrus.bpmn.BPMNProfile.ConversationLink#getBase_Dependency <em>Base Dependency</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Dependency</em>' reference.
* @see #getBase_Dependency()
* @generated
*/
void setBase_Dependency(Dependency value);
/**
* Returns the value of the '<em><b>Target Ref</b></em>' reference.
* It is bidirectional and its opposite is '{@link org.eclipse.papyrus.bpmn.BPMNProfile.InteractionNode#getIncomingConversationLinks <em>Incoming Conversation Links</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Target 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>Target Ref</em>' reference.
* @see #setTargetRef(InteractionNode)
* @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getConversationLink_TargetRef()
* @see org.eclipse.papyrus.bpmn.BPMNProfile.InteractionNode#getIncomingConversationLinks
* @model opposite="incomingConversationLinks" required="true" ordered="false"
* @generated
*/
InteractionNode getTargetRef();
/**
* Sets the value of the '{@link org.eclipse.papyrus.bpmn.BPMNProfile.ConversationLink#getTargetRef <em>Target Ref</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Target Ref</em>' reference.
* @see #getTargetRef()
* @generated
*/
void setTargetRef(InteractionNode value);
/**
* Returns the value of the '<em><b>Source Ref</b></em>' reference.
* It is bidirectional and its opposite is '{@link org.eclipse.papyrus.bpmn.BPMNProfile.InteractionNode#getOutgoingConversationLinks <em>Outgoing Conversation Links</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Source 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>Source Ref</em>' reference.
* @see #setSourceRef(InteractionNode)
* @see org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage#getConversationLink_SourceRef()
* @see org.eclipse.papyrus.bpmn.BPMNProfile.InteractionNode#getOutgoingConversationLinks
* @model opposite="outgoingConversationLinks" required="true" ordered="false"
* @generated
*/
InteractionNode getSourceRef();
/**
* Sets the value of the '{@link org.eclipse.papyrus.bpmn.BPMNProfile.ConversationLink#getSourceRef <em>Source Ref</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Source Ref</em>' reference.
* @see #getSourceRef()
* @generated
*/
void setSourceRef(InteractionNode value);
} // ConversationLink