org.eclipse.bpmn2.impl.FlowElementImpl 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.Auditing;
import org.eclipse.bpmn2.Bpmn2Package;
import org.eclipse.bpmn2.CategoryValue;
import org.eclipse.bpmn2.FlowElement;
import org.eclipse.bpmn2.Monitoring;
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.EObjectResolvingEList;
/**
*
* An implementation of the model object 'Flow Element'.
*
*
* The following features are implemented:
*
*
* - {@link org.eclipse.bpmn2.impl.FlowElementImpl#getAuditing Auditing}
* - {@link org.eclipse.bpmn2.impl.FlowElementImpl#getMonitoring Monitoring}
* - {@link org.eclipse.bpmn2.impl.FlowElementImpl#getCategoryValueRef Category Value Ref}
* - {@link org.eclipse.bpmn2.impl.FlowElementImpl#getName Name}
*
*
* @generated
*/
public abstract class FlowElementImpl extends BaseElementImpl implements FlowElement {
/**
* The cached value of the '{@link #getAuditing() Auditing}' containment reference.
*
*
* @see #getAuditing()
* @generated
* @ordered
*/
@GwtTransient
protected Auditing auditing;
/**
* The cached value of the '{@link #getMonitoring() Monitoring}' containment reference.
*
*
* @see #getMonitoring()
* @generated
* @ordered
*/
@GwtTransient
protected Monitoring monitoring;
/**
* The cached value of the '{@link #getCategoryValueRef() Category Value Ref}' reference list.
*
*
* @see #getCategoryValueRef()
* @generated
* @ordered
*/
@GwtTransient
protected EList categoryValueRef;
/**
* 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 FlowElementImpl() {
super();
}
/**
*
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return Bpmn2Package.Literals.FLOW_ELEMENT;
}
/**
*
*
* @generated
*/
@Override
public Auditing getAuditing() {
return auditing;
}
/**
*
*
* @generated
*/
public NotificationChain basicSetAuditing(Auditing newAuditing, NotificationChain msgs) {
Auditing oldAuditing = auditing;
auditing = newAuditing;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET,
Bpmn2Package.FLOW_ELEMENT__AUDITING, oldAuditing, newAuditing);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
/**
*
*
* @generated
*/
@Override
public void setAuditing(Auditing newAuditing) {
if (newAuditing != auditing) {
NotificationChain msgs = null;
if (auditing != null)
msgs = ((InternalEObject) auditing).eInverseRemove(this,
EOPPOSITE_FEATURE_BASE - Bpmn2Package.FLOW_ELEMENT__AUDITING, null, msgs);
if (newAuditing != null)
msgs = ((InternalEObject) newAuditing).eInverseAdd(this,
EOPPOSITE_FEATURE_BASE - Bpmn2Package.FLOW_ELEMENT__AUDITING, null, msgs);
msgs = basicSetAuditing(newAuditing, msgs);
if (msgs != null)
msgs.dispatch();
} else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, Bpmn2Package.FLOW_ELEMENT__AUDITING, newAuditing,
newAuditing));
}
/**
*
*
* @generated
*/
@Override
public Monitoring getMonitoring() {
return monitoring;
}
/**
*
*
* @generated
*/
public NotificationChain basicSetMonitoring(Monitoring newMonitoring, NotificationChain msgs) {
Monitoring oldMonitoring = monitoring;
monitoring = newMonitoring;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET,
Bpmn2Package.FLOW_ELEMENT__MONITORING, oldMonitoring, newMonitoring);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
/**
*
*
* @generated
*/
@Override
public void setMonitoring(Monitoring newMonitoring) {
if (newMonitoring != monitoring) {
NotificationChain msgs = null;
if (monitoring != null)
msgs = ((InternalEObject) monitoring).eInverseRemove(this,
EOPPOSITE_FEATURE_BASE - Bpmn2Package.FLOW_ELEMENT__MONITORING, null, msgs);
if (newMonitoring != null)
msgs = ((InternalEObject) newMonitoring).eInverseAdd(this,
EOPPOSITE_FEATURE_BASE - Bpmn2Package.FLOW_ELEMENT__MONITORING, null, msgs);
msgs = basicSetMonitoring(newMonitoring, msgs);
if (msgs != null)
msgs.dispatch();
} else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, Bpmn2Package.FLOW_ELEMENT__MONITORING, newMonitoring,
newMonitoring));
}
/**
*
*
* @generated
*/
@Override
public EList getCategoryValueRef() {
if (categoryValueRef == null) {
categoryValueRef = new EObjectResolvingEList(CategoryValue.class, this,
Bpmn2Package.FLOW_ELEMENT__CATEGORY_VALUE_REF);
}
return categoryValueRef;
}
/**
*
*
* @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.FLOW_ELEMENT__NAME, oldName, name));
}
/**
*
*
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case Bpmn2Package.FLOW_ELEMENT__AUDITING:
return basicSetAuditing(null, msgs);
case Bpmn2Package.FLOW_ELEMENT__MONITORING:
return basicSetMonitoring(null, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
*
*
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case Bpmn2Package.FLOW_ELEMENT__AUDITING:
return getAuditing();
case Bpmn2Package.FLOW_ELEMENT__MONITORING:
return getMonitoring();
case Bpmn2Package.FLOW_ELEMENT__CATEGORY_VALUE_REF:
return getCategoryValueRef();
case Bpmn2Package.FLOW_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.FLOW_ELEMENT__AUDITING:
setAuditing((Auditing) newValue);
return;
case Bpmn2Package.FLOW_ELEMENT__MONITORING:
setMonitoring((Monitoring) newValue);
return;
case Bpmn2Package.FLOW_ELEMENT__CATEGORY_VALUE_REF:
getCategoryValueRef().clear();
getCategoryValueRef().addAll((Collection extends CategoryValue>) newValue);
return;
case Bpmn2Package.FLOW_ELEMENT__NAME:
setName((String) newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
*
*
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case Bpmn2Package.FLOW_ELEMENT__AUDITING:
setAuditing((Auditing) null);
return;
case Bpmn2Package.FLOW_ELEMENT__MONITORING:
setMonitoring((Monitoring) null);
return;
case Bpmn2Package.FLOW_ELEMENT__CATEGORY_VALUE_REF:
getCategoryValueRef().clear();
return;
case Bpmn2Package.FLOW_ELEMENT__NAME:
setName(NAME_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
*
*
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case Bpmn2Package.FLOW_ELEMENT__AUDITING:
return auditing != null;
case Bpmn2Package.FLOW_ELEMENT__MONITORING:
return monitoring != null;
case Bpmn2Package.FLOW_ELEMENT__CATEGORY_VALUE_REF:
return categoryValueRef != null && !categoryValueRef.isEmpty();
case Bpmn2Package.FLOW_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();
}
} //FlowElementImpl
© 2015 - 2025 Weber Informatics LLC | Privacy Policy