blob: 73b52cdf5bc242a79875d10286b9fd15a98da81e [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.impl;
import java.util.Collection;
import org.eclipse.emf.common.notify.Notification;
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.impl.MinimalEObjectImpl;
import org.eclipse.uml2.uml.Element;
import org.eclipse.upr.bpmnprof.BpmnprofPackage;
import org.eclipse.upr.bpmnprof.ConversationLink;
import org.eclipse.upr.bpmnprof.InteractionNode;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Interaction Node</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.upr.bpmnprof.impl.InteractionNodeImpl#getBase_Element <em>Base Element</em>}</li>
* <li>{@link org.eclipse.upr.bpmnprof.impl.InteractionNodeImpl#getOutgoingConversationLinks <em>Outgoing Conversation Links</em>}</li>
* <li>{@link org.eclipse.upr.bpmnprof.impl.InteractionNodeImpl#getIncomingConversationLinks <em>Incoming Conversation Links</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public abstract class InteractionNodeImpl extends MinimalEObjectImpl.Container implements InteractionNode {
/**
* The cached value of the '{@link #getBase_Element() <em>Base Element</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getBase_Element()
* @generated
* @ordered
*/
protected Element base_Element;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected InteractionNodeImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return BpmnprofPackage.eINSTANCE.getInteractionNode();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Element getBase_Element() {
if (base_Element != null && base_Element.eIsProxy()) {
InternalEObject oldBase_Element = (InternalEObject)base_Element;
base_Element = (Element)eResolveProxy(oldBase_Element);
if (base_Element != oldBase_Element) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, BpmnprofPackage.INTERACTION_NODE__BASE_ELEMENT, oldBase_Element, base_Element));
}
}
return base_Element;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Element basicGetBase_Element() {
return base_Element;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setBase_Element(Element newBase_Element) {
Element oldBase_Element = base_Element;
base_Element = newBase_Element;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, BpmnprofPackage.INTERACTION_NODE__BASE_ELEMENT, oldBase_Element, base_Element));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<ConversationLink> getOutgoingConversationLinks() {
// TODO: implement this method to return the 'Outgoing Conversation Links' reference list
// Ensure that you remove @generated or mark it @generated NOT
throw new UnsupportedOperationException();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ConversationLink getIncomingConversationLinks() {
ConversationLink incomingConversationLinks = basicGetIncomingConversationLinks();
return incomingConversationLinks != null && incomingConversationLinks.eIsProxy() ? (ConversationLink)eResolveProxy((InternalEObject)incomingConversationLinks) : incomingConversationLinks;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ConversationLink basicGetIncomingConversationLinks() {
// TODO: implement this method to return the 'Incoming Conversation Links' reference
// -> do not perform proxy resolution
// Ensure that you remove @generated or mark it @generated NOT
throw new UnsupportedOperationException();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setIncomingConversationLinks(ConversationLink newIncomingConversationLinks) {
// TODO: implement this method to set the 'Incoming Conversation Links' reference
// Ensure that you remove @generated or mark it @generated NOT
throw new UnsupportedOperationException();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case BpmnprofPackage.INTERACTION_NODE__BASE_ELEMENT:
if (resolve) return getBase_Element();
return basicGetBase_Element();
case BpmnprofPackage.INTERACTION_NODE__OUTGOING_CONVERSATION_LINKS:
return getOutgoingConversationLinks();
case BpmnprofPackage.INTERACTION_NODE__INCOMING_CONVERSATION_LINKS:
if (resolve) return getIncomingConversationLinks();
return basicGetIncomingConversationLinks();
}
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 BpmnprofPackage.INTERACTION_NODE__BASE_ELEMENT:
setBase_Element((Element)newValue);
return;
case BpmnprofPackage.INTERACTION_NODE__OUTGOING_CONVERSATION_LINKS:
getOutgoingConversationLinks().clear();
getOutgoingConversationLinks().addAll((Collection<? extends ConversationLink>)newValue);
return;
case BpmnprofPackage.INTERACTION_NODE__INCOMING_CONVERSATION_LINKS:
setIncomingConversationLinks((ConversationLink)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case BpmnprofPackage.INTERACTION_NODE__BASE_ELEMENT:
setBase_Element((Element)null);
return;
case BpmnprofPackage.INTERACTION_NODE__OUTGOING_CONVERSATION_LINKS:
getOutgoingConversationLinks().clear();
return;
case BpmnprofPackage.INTERACTION_NODE__INCOMING_CONVERSATION_LINKS:
setIncomingConversationLinks((ConversationLink)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case BpmnprofPackage.INTERACTION_NODE__BASE_ELEMENT:
return base_Element != null;
case BpmnprofPackage.INTERACTION_NODE__OUTGOING_CONVERSATION_LINKS:
return !getOutgoingConversationLinks().isEmpty();
case BpmnprofPackage.INTERACTION_NODE__INCOMING_CONVERSATION_LINKS:
return basicGetIncomingConversationLinks() != null;
}
return super.eIsSet(featureID);
}
} //InteractionNodeImpl