org.omg.bpmn.bpmn2.impl.DataOutputImpl 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.EObjectWithInverseResolvingEList;
import org.eclipse.emf.ecore.util.InternalEList;
import org.omg.bpmn.bpmn2.Bpmn2Package;
import org.omg.bpmn.bpmn2.DataOutput;
import org.omg.bpmn.bpmn2.OutputSet;
/**
*
* An implementation of the model object 'Data Output'.
*
*
* The following features are implemented:
*
*
* - {@link org.omg.bpmn.bpmn2.impl.DataOutputImpl#getOutputSetWithOptional Output Set With Optional}
* - {@link org.omg.bpmn.bpmn2.impl.DataOutputImpl#getOutputSetWithWhileExecuting Output Set With While Executing}
* - {@link org.omg.bpmn.bpmn2.impl.DataOutputImpl#getOutputSetRefs Output Set Refs}
* - {@link org.omg.bpmn.bpmn2.impl.DataOutputImpl#isIsCollection Is Collection}
* - {@link org.omg.bpmn.bpmn2.impl.DataOutputImpl#getName Name}
*
*
* @generated
*/
public class DataOutputImpl extends ItemAwareElementImpl implements DataOutput {
/**
* The cached value of the '{@link #getOutputSetWithOptional() Output Set With Optional}' reference list.
*
*
* @see #getOutputSetWithOptional()
* @generated
* @ordered
*/
protected EList outputSetWithOptional;
/**
* The cached value of the '{@link #getOutputSetWithWhileExecuting() Output Set With While Executing}' reference list.
*
*
* @see #getOutputSetWithWhileExecuting()
* @generated
* @ordered
*/
protected EList outputSetWithWhileExecuting;
/**
* The cached value of the '{@link #getOutputSetRefs() Output Set Refs}' reference list.
*
*
* @see #getOutputSetRefs()
* @generated
* @ordered
*/
protected EList outputSetRefs;
/**
* The default value of the '{@link #isIsCollection() Is Collection}' attribute.
*
*
* @see #isIsCollection()
* @generated
* @ordered
*/
protected static final boolean IS_COLLECTION_EDEFAULT = false;
/**
* The cached value of the '{@link #isIsCollection() Is Collection}' attribute.
*
*
* @see #isIsCollection()
* @generated
* @ordered
*/
protected boolean isCollection = IS_COLLECTION_EDEFAULT;
/**
* 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 DataOutputImpl() {
super();
}
/**
*
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return Bpmn2Package.eINSTANCE.getDataOutput();
}
/**
*
*
* @generated
*/
@Override
public EList getOutputSetWithOptional() {
if (outputSetWithOptional == null) {
outputSetWithOptional = new EObjectWithInverseResolvingEList.ManyInverse(OutputSet.class, this, Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_OPTIONAL, Bpmn2Package.OUTPUT_SET__OPTIONAL_OUTPUT_REFS);
}
return outputSetWithOptional;
}
/**
*
*
* @generated
*/
@Override
public EList getOutputSetWithWhileExecuting() {
if (outputSetWithWhileExecuting == null) {
outputSetWithWhileExecuting = new EObjectWithInverseResolvingEList.ManyInverse(OutputSet.class, this, Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_WHILE_EXECUTING, Bpmn2Package.OUTPUT_SET__WHILE_EXECUTING_OUTPUT_REFS);
}
return outputSetWithWhileExecuting;
}
/**
*
*
* @generated
*/
@Override
public EList getOutputSetRefs() {
if (outputSetRefs == null) {
outputSetRefs = new EObjectWithInverseResolvingEList.ManyInverse(OutputSet.class, this, Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_REFS, Bpmn2Package.OUTPUT_SET__DATA_OUTPUT_REFS);
}
return outputSetRefs;
}
/**
*
*
* @generated
*/
@Override
public boolean isIsCollection() {
return isCollection;
}
/**
*
*
* @generated
*/
@Override
public void setIsCollection(boolean newIsCollection) {
boolean oldIsCollection = isCollection;
isCollection = newIsCollection;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, Bpmn2Package.DATA_OUTPUT__IS_COLLECTION, oldIsCollection, isCollection));
}
/**
*
*
* @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.DATA_OUTPUT__NAME, oldName, name));
}
/**
*
*
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_OPTIONAL:
return ((InternalEList)(InternalEList>)getOutputSetWithOptional()).basicAdd(otherEnd, msgs);
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_WHILE_EXECUTING:
return ((InternalEList)(InternalEList>)getOutputSetWithWhileExecuting()).basicAdd(otherEnd, msgs);
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_REFS:
return ((InternalEList)(InternalEList>)getOutputSetRefs()).basicAdd(otherEnd, msgs);
}
return super.eInverseAdd(otherEnd, featureID, msgs);
}
/**
*
*
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_OPTIONAL:
return ((InternalEList>)getOutputSetWithOptional()).basicRemove(otherEnd, msgs);
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_WHILE_EXECUTING:
return ((InternalEList>)getOutputSetWithWhileExecuting()).basicRemove(otherEnd, msgs);
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_REFS:
return ((InternalEList>)getOutputSetRefs()).basicRemove(otherEnd, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
*
*
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_OPTIONAL:
return getOutputSetWithOptional();
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_WHILE_EXECUTING:
return getOutputSetWithWhileExecuting();
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_REFS:
return getOutputSetRefs();
case Bpmn2Package.DATA_OUTPUT__IS_COLLECTION:
return isIsCollection();
case Bpmn2Package.DATA_OUTPUT__NAME:
return getName();
}
return super.eGet(featureID, resolve, coreType);
}
/**
*
*
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_OPTIONAL:
getOutputSetWithOptional().clear();
getOutputSetWithOptional().addAll((Collection extends OutputSet>)newValue);
return;
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_WHILE_EXECUTING:
getOutputSetWithWhileExecuting().clear();
getOutputSetWithWhileExecuting().addAll((Collection extends OutputSet>)newValue);
return;
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_REFS:
getOutputSetRefs().clear();
getOutputSetRefs().addAll((Collection extends OutputSet>)newValue);
return;
case Bpmn2Package.DATA_OUTPUT__IS_COLLECTION:
setIsCollection((Boolean)newValue);
return;
case Bpmn2Package.DATA_OUTPUT__NAME:
setName((String)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
*
*
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_OPTIONAL:
getOutputSetWithOptional().clear();
return;
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_WHILE_EXECUTING:
getOutputSetWithWhileExecuting().clear();
return;
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_REFS:
getOutputSetRefs().clear();
return;
case Bpmn2Package.DATA_OUTPUT__IS_COLLECTION:
setIsCollection(IS_COLLECTION_EDEFAULT);
return;
case Bpmn2Package.DATA_OUTPUT__NAME:
setName(NAME_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
*
*
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_OPTIONAL:
return outputSetWithOptional != null && !outputSetWithOptional.isEmpty();
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_WHILE_EXECUTING:
return outputSetWithWhileExecuting != null && !outputSetWithWhileExecuting.isEmpty();
case Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_REFS:
return outputSetRefs != null && !outputSetRefs.isEmpty();
case Bpmn2Package.DATA_OUTPUT__IS_COLLECTION:
return isCollection != IS_COLLECTION_EDEFAULT;
case Bpmn2Package.DATA_OUTPUT__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(" (isCollection: ");
result.append(isCollection);
result.append(", name: ");
result.append(name);
result.append(')');
return result.toString();
}
} //DataOutputImpl