/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.omg.schema.spec.bpmn.BPMN.impl;
import java.util.Collection;
import javax.xml.namespace.QName;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.util.EObjectContainmentEList;
import org.eclipse.emf.ecore.util.InternalEList;
import org.omg.schema.spec.bpmn.BPMN.BPMNPackage;
import org.omg.schema.spec.bpmn.BPMN.TCallConversation;
import org.omg.schema.spec.bpmn.BPMN.TParticipantAssociation;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>TCall Conversation</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.omg.schema.spec.bpmn.BPMN.impl.TCallConversationImpl#getParticipantAssociation <em>Participant Association</em>}</li>
* <li>{@link org.omg.schema.spec.bpmn.BPMN.impl.TCallConversationImpl#getCalledElementRef <em>Called Element Ref</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class TCallConversationImpl extends TConversationNodeImpl implements TCallConversation {
/**
* The cached value of the '{@link #getParticipantAssociation() <em>Participant Association</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getParticipantAssociation()
* @generated
* @ordered
*/
protected EList<TParticipantAssociation> participantAssociation;
/**
* The default value of the '{@link #getCalledElementRef() <em>Called Element Ref</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getCalledElementRef()
* @generated
* @ordered
*/
protected static final QName CALLED_ELEMENT_REF_EDEFAULT = null;
/**
* The cached value of the '{@link #getCalledElementRef() <em>Called Element Ref</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getCalledElementRef()
* @generated
* @ordered
*/
protected QName calledElementRef = CALLED_ELEMENT_REF_EDEFAULT;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected TCallConversationImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return BPMNPackage.eINSTANCE.getTCallConversation();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<TParticipantAssociation> getParticipantAssociation() {
if (participantAssociation == null) {
participantAssociation = new EObjectContainmentEList<TParticipantAssociation>(TParticipantAssociation.class, this, BPMNPackage.TCALL_CONVERSATION__PARTICIPANT_ASSOCIATION);
}
return participantAssociation;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public QName getCalledElementRef() {
return calledElementRef;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setCalledElementRef(QName newCalledElementRef) {
QName oldCalledElementRef = calledElementRef;
calledElementRef = newCalledElementRef;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, BPMNPackage.TCALL_CONVERSATION__CALLED_ELEMENT_REF, oldCalledElementRef, calledElementRef));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case BPMNPackage.TCALL_CONVERSATION__PARTICIPANT_ASSOCIATION:
return ((InternalEList<?>)getParticipantAssociation()).basicRemove(otherEnd, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case BPMNPackage.TCALL_CONVERSATION__PARTICIPANT_ASSOCIATION:
return getParticipantAssociation();
case BPMNPackage.TCALL_CONVERSATION__CALLED_ELEMENT_REF:
return getCalledElementRef();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case BPMNPackage.TCALL_CONVERSATION__PARTICIPANT_ASSOCIATION:
getParticipantAssociation().clear();
getParticipantAssociation().addAll((Collection<? extends TParticipantAssociation>)newValue);
return;
case BPMNPackage.TCALL_CONVERSATION__CALLED_ELEMENT_REF:
setCalledElementRef((QName)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case BPMNPackage.TCALL_CONVERSATION__PARTICIPANT_ASSOCIATION:
getParticipantAssociation().clear();
return;
case BPMNPackage.TCALL_CONVERSATION__CALLED_ELEMENT_REF:
setCalledElementRef(CALLED_ELEMENT_REF_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case BPMNPackage.TCALL_CONVERSATION__PARTICIPANT_ASSOCIATION:
return participantAssociation != null && !participantAssociation.isEmpty();
case BPMNPackage.TCALL_CONVERSATION__CALLED_ELEMENT_REF:
return CALLED_ELEMENT_REF_EDEFAULT == null ? calledElementRef != null : !CALLED_ELEMENT_REF_EDEFAULT.equals(calledElementRef);
}
return super.eIsSet(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String toString() {
if (eIsProxy()) return super.toString();
StringBuffer result = new StringBuffer(super.toString());
result.append(" (calledElementRef: ");
result.append(calledElementRef);
result.append(')');
return result.toString();
}
} //TCallConversationImpl
|