org.eclipse.bpmn2.impl.CallableElementImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kie-wb-common-stunner-bpmn-emf Show documentation
Show all versions of kie-wb-common-stunner-bpmn-emf Show documentation
Kie Workbench - Common - Stunner - BPMN Definition Set - GWT Support for Eclipse EMF/XMI
/**
*
*
* Copyright (c) 2010 SAP AG.
* 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:
* Reiner Hille-Doering (SAP AG) - initial API and implementation and/or initial documentation
*
*
*/
package org.eclipse.bpmn2.impl;
import com.google.gwt.user.client.rpc.GwtTransient;
import java.util.Collection;
import org.eclipse.bpmn2.Bpmn2Package;
import org.eclipse.bpmn2.CallableElement;
import org.eclipse.bpmn2.InputOutputBinding;
import org.eclipse.bpmn2.InputOutputSpecification;
import org.eclipse.bpmn2.Interface;
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;
/**
*
* An implementation of the model object 'Callable Element'.
*
*
* The following features are implemented:
*
*
* - {@link org.eclipse.bpmn2.impl.CallableElementImpl#getSupportedInterfaceRefs Supported Interface Refs}
* - {@link org.eclipse.bpmn2.impl.CallableElementImpl#getIoSpecification Io Specification}
* - {@link org.eclipse.bpmn2.impl.CallableElementImpl#getIoBinding Io Binding}
* - {@link org.eclipse.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
*/
@GwtTransient
protected EList supportedInterfaceRefs;
/**
* The cached value of the '{@link #getIoSpecification() Io Specification}' containment reference.
*
*
* @see #getIoSpecification()
* @generated
* @ordered
*/
@GwtTransient
protected InputOutputSpecification ioSpecification;
/**
* The cached value of the '{@link #getIoBinding() Io Binding}' containment reference list.
*
*
* @see #getIoBinding()
* @generated
* @ordered
*/
@GwtTransient
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
*/
@GwtTransient
protected String name = NAME_EDEFAULT;
/**
*
*
* @generated
*/
protected CallableElementImpl() {
super();
}
/**
*
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return Bpmn2Package.Literals.CALLABLE_ELEMENT;
}
/**
*
*
* @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
© 2015 - 2025 Weber Informatics LLC | Privacy Policy