org.omg.bpmn.bpmn2.impl.CallableElementImpl 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.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.util.EObjectContainmentEList;
import org.eclipse.emf.ecore.util.EObjectResolvingEList;
import org.eclipse.emf.ecore.util.InternalEList;
import org.omg.bpmn.bpmn2.Bpmn2Package;
import org.omg.bpmn.bpmn2.CallableElement;
import org.omg.bpmn.bpmn2.InputOutputBinding;
import org.omg.bpmn.bpmn2.InputOutputSpecification;
import org.omg.bpmn.bpmn2.Interface;
/**
*
* An implementation of the model object 'Callable Element'.
*
*
* The following features are implemented:
*
*
* - {@link org.omg.bpmn.bpmn2.impl.CallableElementImpl#getSupportedInterfaceRefs Supported Interface Refs}
* - {@link org.omg.bpmn.bpmn2.impl.CallableElementImpl#getIoSpecification Io Specification}
* - {@link org.omg.bpmn.bpmn2.impl.CallableElementImpl#getIoBinding Io Binding}
* - {@link org.omg.bpmn.bpmn2.impl.CallableElementImpl#getName Name}
*
*
* @generated
*/
public class CallableElementImpl extends RootElementImpl implements CallableElement {
/**
* The cached value of the '{@link #getSupportedInterfaceRefs() Supported Interface Refs}' reference list.
*
*
* @see #getSupportedInterfaceRefs()
* @generated
* @ordered
*/
protected EList supportedInterfaceRefs;
/**
* The cached value of the '{@link #getIoSpecification() Io Specification}' containment reference.
*
*
* @see #getIoSpecification()
* @generated
* @ordered
*/
protected InputOutputSpecification ioSpecification;
/**
* The cached value of the '{@link #getIoBinding() Io Binding}' containment reference list.
*
*
* @see #getIoBinding()
* @generated
* @ordered
*/
protected EList ioBinding;
/**
* 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 CallableElementImpl() {
super();
}
/**
*
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return Bpmn2Package.eINSTANCE.getCallableElement();
}
/**
*
*
* @generated
*/
@Override
public EList getSupportedInterfaceRefs() {
if (supportedInterfaceRefs == null) {
supportedInterfaceRefs = new EObjectResolvingEList(Interface.class, this, Bpmn2Package.CALLABLE_ELEMENT__SUPPORTED_INTERFACE_REFS);
}
return supportedInterfaceRefs;
}
/**
*
*
* @generated
*/
@Override
public InputOutputSpecification getIoSpecification() {
return ioSpecification;
}
/**
*
*
* @generated
*/
public NotificationChain basicSetIoSpecification(InputOutputSpecification newIoSpecification, NotificationChain msgs) {
InputOutputSpecification oldIoSpecification = ioSpecification;
ioSpecification = newIoSpecification;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, Bpmn2Package.CALLABLE_ELEMENT__IO_SPECIFICATION, oldIoSpecification, newIoSpecification);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
*
*
* @generated
*/
@Override
public void setIoSpecification(InputOutputSpecification newIoSpecification) {
if (newIoSpecification != ioSpecification) {
NotificationChain msgs = null;
if (ioSpecification != null)
msgs = ((InternalEObject)ioSpecification).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - Bpmn2Package.CALLABLE_ELEMENT__IO_SPECIFICATION, null, msgs);
if (newIoSpecification != null)
msgs = ((InternalEObject)newIoSpecification).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - Bpmn2Package.CALLABLE_ELEMENT__IO_SPECIFICATION, null, msgs);
msgs = basicSetIoSpecification(newIoSpecification, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, Bpmn2Package.CALLABLE_ELEMENT__IO_SPECIFICATION, newIoSpecification, newIoSpecification));
}
/**
*
*
* @generated
*/
@Override
public EList getIoBinding() {
if (ioBinding == null) {
ioBinding = new EObjectContainmentEList(InputOutputBinding.class, this, Bpmn2Package.CALLABLE_ELEMENT__IO_BINDING);
}
return ioBinding;
}
/**
*
*
* @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.CALLABLE_ELEMENT__NAME, oldName, name));
}
/**
*
*
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case Bpmn2Package.CALLABLE_ELEMENT__IO_SPECIFICATION:
return basicSetIoSpecification(null, msgs);
case Bpmn2Package.CALLABLE_ELEMENT__IO_BINDING:
return ((InternalEList>)getIoBinding()).basicRemove(otherEnd, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
*
*
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case Bpmn2Package.CALLABLE_ELEMENT__SUPPORTED_INTERFACE_REFS:
return getSupportedInterfaceRefs();
case Bpmn2Package.CALLABLE_ELEMENT__IO_SPECIFICATION:
return getIoSpecification();
case Bpmn2Package.CALLABLE_ELEMENT__IO_BINDING:
return getIoBinding();
case Bpmn2Package.CALLABLE_ELEMENT__NAME:
return getName();
}
return super.eGet(featureID, resolve, coreType);
}
/**
*
*
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case Bpmn2Package.CALLABLE_ELEMENT__SUPPORTED_INTERFACE_REFS:
getSupportedInterfaceRefs().clear();
getSupportedInterfaceRefs().addAll((Collection extends Interface>)newValue);
return;
case Bpmn2Package.CALLABLE_ELEMENT__IO_SPECIFICATION:
setIoSpecification((InputOutputSpecification)newValue);
return;
case Bpmn2Package.CALLABLE_ELEMENT__IO_BINDING:
getIoBinding().clear();
getIoBinding().addAll((Collection extends InputOutputBinding>)newValue);
return;
case Bpmn2Package.CALLABLE_ELEMENT__NAME:
setName((String)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
*
*
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case Bpmn2Package.CALLABLE_ELEMENT__SUPPORTED_INTERFACE_REFS:
getSupportedInterfaceRefs().clear();
return;
case Bpmn2Package.CALLABLE_ELEMENT__IO_SPECIFICATION:
setIoSpecification((InputOutputSpecification)null);
return;
case Bpmn2Package.CALLABLE_ELEMENT__IO_BINDING:
getIoBinding().clear();
return;
case Bpmn2Package.CALLABLE_ELEMENT__NAME:
setName(NAME_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
*
*
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case Bpmn2Package.CALLABLE_ELEMENT__SUPPORTED_INTERFACE_REFS:
return supportedInterfaceRefs != null && !supportedInterfaceRefs.isEmpty();
case Bpmn2Package.CALLABLE_ELEMENT__IO_SPECIFICATION:
return ioSpecification != null;
case Bpmn2Package.CALLABLE_ELEMENT__IO_BINDING:
return ioBinding != null && !ioBinding.isEmpty();
case Bpmn2Package.CALLABLE_ELEMENT__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();
}
} //CallableElementImpl