blob: a87b22fa0312c7bf42f9d376f8f2eef856b5c000 [file] [log] [blame]
/**
* Copyright (c) 2000-2009, Intalio Inc.
* 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:
* Intalio Inc. - initial API and implementation
*
*/
package org.eclipse.mdt.bpmn;
import javax.xml.namespace.QName;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Participant</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.mdt.bpmn.Participant#getInterfaceRef <em>Interface Ref</em>}</li>
* <li>{@link org.eclipse.mdt.bpmn.Participant#getEndPointRef <em>End Point Ref</em>}</li>
* <li>{@link org.eclipse.mdt.bpmn.Participant#getParticipantMultiplicity <em>Participant Multiplicity</em>}</li>
* <li>{@link org.eclipse.mdt.bpmn.Participant#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.mdt.bpmn.Participant#getPartnerEntityRef <em>Partner Entity Ref</em>}</li>
* <li>{@link org.eclipse.mdt.bpmn.Participant#getPartnerRoleRef <em>Partner Role Ref</em>}</li>
* <li>{@link org.eclipse.mdt.bpmn.Participant#getProcessRef <em>Process Ref</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.mdt.bpmn.BpmnPackage#getParticipant()
* @model extendedMetaData="name='tParticipant' kind='elementOnly'"
* @generated
*/
public interface Participant extends BaseElement {
/**
* Returns the value of the '<em><b>Interface Ref</b></em>' attribute list.
* The list contents are of type {@link javax.xml.namespace.QName}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Interface Ref</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Interface Ref</em>' attribute list.
* @see org.eclipse.mdt.bpmn.BpmnPackage#getParticipant_InterfaceRef()
* @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.QName"
* extendedMetaData="kind='element' name='interfaceRef' namespace='##targetNamespace'"
* @generated
*/
EList<QName> getInterfaceRef();
/**
* Returns the value of the '<em><b>End Point Ref</b></em>' attribute list.
* The list contents are of type {@link javax.xml.namespace.QName}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>End Point Ref</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>End Point Ref</em>' attribute list.
* @see org.eclipse.mdt.bpmn.BpmnPackage#getParticipant_EndPointRef()
* @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.QName"
* extendedMetaData="kind='element' name='endPointRef' namespace='##targetNamespace'"
* @generated
*/
EList<QName> getEndPointRef();
/**
* Returns the value of the '<em><b>Participant Multiplicity</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Participant Multiplicity</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Participant Multiplicity</em>' containment reference.
* @see #setParticipantMultiplicity(ParticipantMultiplicity)
* @see org.eclipse.mdt.bpmn.BpmnPackage#getParticipant_ParticipantMultiplicity()
* @model containment="true"
* extendedMetaData="kind='element' name='participantMultiplicity' namespace='##targetNamespace'"
* @generated
*/
ParticipantMultiplicity getParticipantMultiplicity();
/**
* Sets the value of the '{@link org.eclipse.mdt.bpmn.Participant#getParticipantMultiplicity <em>Participant Multiplicity</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Participant Multiplicity</em>' containment reference.
* @see #getParticipantMultiplicity()
* @generated
*/
void setParticipantMultiplicity(ParticipantMultiplicity value);
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see org.eclipse.mdt.bpmn.BpmnPackage#getParticipant_Name()
* @model dataType="org.eclipse.emf.ecore.xml.type.String"
* extendedMetaData="kind='attribute' name='name'"
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.mdt.bpmn.Participant#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the '<em><b>Partner Entity Ref</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Partner Entity Ref</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Partner Entity Ref</em>' attribute.
* @see #setPartnerEntityRef(QName)
* @see org.eclipse.mdt.bpmn.BpmnPackage#getParticipant_PartnerEntityRef()
* @model dataType="org.eclipse.emf.ecore.xml.type.QName"
* extendedMetaData="kind='attribute' name='partnerEntityRef'"
* @generated
*/
QName getPartnerEntityRef();
/**
* Sets the value of the '{@link org.eclipse.mdt.bpmn.Participant#getPartnerEntityRef <em>Partner Entity Ref</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Partner Entity Ref</em>' attribute.
* @see #getPartnerEntityRef()
* @generated
*/
void setPartnerEntityRef(QName value);
/**
* Returns the value of the '<em><b>Partner Role Ref</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Partner Role Ref</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Partner Role Ref</em>' attribute.
* @see #setPartnerRoleRef(QName)
* @see org.eclipse.mdt.bpmn.BpmnPackage#getParticipant_PartnerRoleRef()
* @model dataType="org.eclipse.emf.ecore.xml.type.QName"
* extendedMetaData="kind='attribute' name='partnerRoleRef'"
* @generated
*/
QName getPartnerRoleRef();
/**
* Sets the value of the '{@link org.eclipse.mdt.bpmn.Participant#getPartnerRoleRef <em>Partner Role Ref</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Partner Role Ref</em>' attribute.
* @see #getPartnerRoleRef()
* @generated
*/
void setPartnerRoleRef(QName value);
/**
* Returns the value of the '<em><b>Process Ref</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Process Ref</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Process Ref</em>' attribute.
* @see #setProcessRef(QName)
* @see org.eclipse.mdt.bpmn.BpmnPackage#getParticipant_ProcessRef()
* @model dataType="org.eclipse.emf.ecore.xml.type.QName"
* extendedMetaData="kind='attribute' name='processRef'"
* @generated
*/
QName getProcessRef();
/**
* Sets the value of the '{@link org.eclipse.mdt.bpmn.Participant#getProcessRef <em>Process Ref</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Process Ref</em>' attribute.
* @see #getProcessRef()
* @generated
*/
void setProcessRef(QName value);
} // Participant