/** */ package org.eclipse.papyrus.bpmn.BPMNProfile.impl; import java.lang.reflect.InvocationTargetException; import java.util.Collection; import java.util.Map; import org.eclipse.emf.common.util.BasicDiagnostic; import org.eclipse.emf.common.util.Diagnostic; import org.eclipse.emf.common.util.DiagnosticChain; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.plugin.EcorePlugin; import org.eclipse.emf.ecore.util.EObjectResolvingEList; import org.eclipse.emf.ecore.util.EObjectValidator; import org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage; import org.eclipse.papyrus.bpmn.BPMNProfile.ConversationNode; import org.eclipse.papyrus.bpmn.BPMNProfile.SubConversation; import org.eclipse.papyrus.bpmn.BPMNProfile.util.BPMNProfileValidator; /** * * An implementation of the model object 'Sub Conversation'. * *

* The following features are implemented: *

* * * @generated */ public class SubConversationImpl extends ConversationNodeImpl implements SubConversation { /** * The cached value of the '{@link #getConversationNodes() Conversation Nodes}' reference list. * * * @see #getConversationNodes() * @generated * @ordered */ protected EList conversationNodes; /** * * * @generated */ protected SubConversationImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return BPMNProfilePackage.eINSTANCE.getSubConversation(); } /** * * * @generated */ public EList getConversationNodes() { if (conversationNodes == null) { conversationNodes = new EObjectResolvingEList(ConversationNode.class, this, BPMNProfilePackage.SUB_CONVERSATION__CONVERSATION_NODES); } return conversationNodes; } /** * * * @generated */ public boolean SubConversationconnectedelements(DiagnosticChain diagnostics, Map context) { // TODO: implement this method // -> specify the condition that violates the invariant // -> verify the details of the diagnostic, including severity and message // Ensure that you remove @generated or mark it @generated NOT if (false) { if (diagnostics != null) { diagnostics.add (new BasicDiagnostic (Diagnostic.ERROR, BPMNProfileValidator.DIAGNOSTIC_SOURCE, BPMNProfileValidator.SUB_CONVERSATION__SUB_CONVERSATIONCONNECTEDELEMENTS, EcorePlugin.INSTANCE.getString("_UI_GenericInvariant_diagnostic", new Object[] { "SubConversationconnectedelements", EObjectValidator.getObjectLabel(this, context) }), new Object [] { this })); } return false; } return true; } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case BPMNProfilePackage.SUB_CONVERSATION__CONVERSATION_NODES: return getConversationNodes(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case BPMNProfilePackage.SUB_CONVERSATION__CONVERSATION_NODES: getConversationNodes().clear(); getConversationNodes().addAll((Collection)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case BPMNProfilePackage.SUB_CONVERSATION__CONVERSATION_NODES: getConversationNodes().clear(); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case BPMNProfilePackage.SUB_CONVERSATION__CONVERSATION_NODES: return conversationNodes != null && !conversationNodes.isEmpty(); } return super.eIsSet(featureID); } /** * * * @generated */ @Override @SuppressWarnings("unchecked") public Object eInvoke(int operationID, EList arguments) throws InvocationTargetException { switch (operationID) { case BPMNProfilePackage.SUB_CONVERSATION___SUB_CONVERSATIONCONNECTEDELEMENTS__DIAGNOSTICCHAIN_MAP: return SubConversationconnectedelements((DiagnosticChain)arguments.get(0), (Map)arguments.get(1)); } return super.eInvoke(operationID, arguments); } } //SubConversationImpl