org.omg.bpmn.bpmn2.impl.InterfaceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.omg.bpmn.model Show documentation
Show all versions of org.omg.bpmn.model Show documentation
Ecore and generated code for org.omg.bpmn2
The newest version!
/*
* Copyright (c) 2012 - 2024 Data In Motion and others.
* All rights reserved.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Mark Hoffmann - initial API and implementation
*/
package org.omg.bpmn.bpmn2.impl;
import java.util.Collection;
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.EObject;
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.bpmn.bpmn2.Bpmn2Package;
import org.omg.bpmn.bpmn2.Interface;
import org.omg.bpmn.bpmn2.Operation;
/**
*
* An implementation of the model object 'Interface'.
*
*
* The following features are implemented:
*
*
* - {@link org.omg.bpmn.bpmn2.impl.InterfaceImpl#getOperations Operations}
* - {@link org.omg.bpmn.bpmn2.impl.InterfaceImpl#getImplementationRef Implementation Ref}
* - {@link org.omg.bpmn.bpmn2.impl.InterfaceImpl#getName Name}
*
*
* @generated
*/
public class InterfaceImpl extends RootElementImpl implements Interface {
/**
* The cached value of the '{@link #getOperations() Operations}' containment reference list.
*
*
* @see #getOperations()
* @generated
* @ordered
*/
protected EList operations;
/**
* The cached value of the '{@link #getImplementationRef() Implementation Ref}' reference.
*
*
* @see #getImplementationRef()
* @generated
* @ordered
*/
protected EObject implementationRef;
/**
* The default value of the '{@link #getName() Name}' attribute.
*
*
* @see #getName()
* @generated
* @ordered
*/
protected static final String NAME_EDEFAULT = null;
/**
* The cached value of the '{@link #getName() Name}' attribute.
*
*
* @see #getName()
* @generated
* @ordered
*/
protected String name = NAME_EDEFAULT;
/**
*
*
* @generated
*/
protected InterfaceImpl() {
super();
}
/**
*
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return Bpmn2Package.eINSTANCE.getInterface();
}
/**
*
*
* @generated
*/
@Override
public EList getOperations() {
if (operations == null) {
operations = new EObjectContainmentEList(Operation.class, this, Bpmn2Package.INTERFACE__OPERATIONS);
}
return operations;
}
/**
*
*
* @generated
*/
@Override
public EObject getImplementationRef() {
if (implementationRef != null && implementationRef.eIsProxy()) {
InternalEObject oldImplementationRef = (InternalEObject)implementationRef;
implementationRef = eResolveProxy(oldImplementationRef);
if (implementationRef != oldImplementationRef) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, Bpmn2Package.INTERFACE__IMPLEMENTATION_REF, oldImplementationRef, implementationRef));
}
}
return implementationRef;
}
/**
*
*
* @generated
*/
public EObject basicGetImplementationRef() {
return implementationRef;
}
/**
*
*
* @generated
*/
@Override
public void setImplementationRef(EObject newImplementationRef) {
EObject oldImplementationRef = implementationRef;
implementationRef = newImplementationRef;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, Bpmn2Package.INTERFACE__IMPLEMENTATION_REF, oldImplementationRef, implementationRef));
}
/**
*
*
* @generated
*/
@Override
public String getName() {
return name;
}
/**
*
*
* @generated
*/
@Override
public void setName(String newName) {
String oldName = name;
name = newName;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, Bpmn2Package.INTERFACE__NAME, oldName, name));
}
/**
*
*
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case Bpmn2Package.INTERFACE__OPERATIONS:
return ((InternalEList>)getOperations()).basicRemove(otherEnd, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
*
*
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case Bpmn2Package.INTERFACE__OPERATIONS:
return getOperations();
case Bpmn2Package.INTERFACE__IMPLEMENTATION_REF:
if (resolve) return getImplementationRef();
return basicGetImplementationRef();
case Bpmn2Package.INTERFACE__NAME:
return getName();
}
return super.eGet(featureID, resolve, coreType);
}
/**
*
*
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case Bpmn2Package.INTERFACE__OPERATIONS:
getOperations().clear();
getOperations().addAll((Collection extends Operation>)newValue);
return;
case Bpmn2Package.INTERFACE__IMPLEMENTATION_REF:
setImplementationRef((EObject)newValue);
return;
case Bpmn2Package.INTERFACE__NAME:
setName((String)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
*
*
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case Bpmn2Package.INTERFACE__OPERATIONS:
getOperations().clear();
return;
case Bpmn2Package.INTERFACE__IMPLEMENTATION_REF:
setImplementationRef((EObject)null);
return;
case Bpmn2Package.INTERFACE__NAME:
setName(NAME_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
*
*
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case Bpmn2Package.INTERFACE__OPERATIONS:
return operations != null && !operations.isEmpty();
case Bpmn2Package.INTERFACE__IMPLEMENTATION_REF:
return implementationRef != null;
case Bpmn2Package.INTERFACE__NAME:
return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
}
return super.eIsSet(featureID);
}
/**
*
*
* @generated
*/
@Override
public String toString() {
if (eIsProxy()) return super.toString();
StringBuilder result = new StringBuilder(super.toString());
result.append(" (name: ");
result.append(name);
result.append(')');
return result.toString();
}
} //InterfaceImpl