All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.bpmn2.impl.OutputSetImpl Maven / Gradle / Ivy

There is a newer version: 7.54.0.Final
Show newest version
/**
 * 
 * 
 * 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.DataOutput;
import org.eclipse.bpmn2.InputSet;
import org.eclipse.bpmn2.OutputSet;

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.EObjectWithInverseEList;
import org.eclipse.emf.ecore.util.InternalEList;

/**
 * 
 * An implementation of the model object 'Output Set'.
 * 
 * 

* The following features are implemented: *

*
    *
  • {@link org.eclipse.bpmn2.impl.OutputSetImpl#getDataOutputRefs Data Output Refs}
  • *
  • {@link org.eclipse.bpmn2.impl.OutputSetImpl#getOptionalOutputRefs Optional Output Refs}
  • *
  • {@link org.eclipse.bpmn2.impl.OutputSetImpl#getWhileExecutingOutputRefs While Executing Output Refs}
  • *
  • {@link org.eclipse.bpmn2.impl.OutputSetImpl#getInputSetRefs Input Set Refs}
  • *
  • {@link org.eclipse.bpmn2.impl.OutputSetImpl#getName Name}
  • *
* * @generated */ public class OutputSetImpl extends BaseElementImpl implements OutputSet { /** * The cached value of the '{@link #getDataOutputRefs() Data Output Refs}' reference list. * * * @see #getDataOutputRefs() * @generated * @ordered */ @GwtTransient protected EList dataOutputRefs; /** * The cached value of the '{@link #getOptionalOutputRefs() Optional Output Refs}' reference list. * * * @see #getOptionalOutputRefs() * @generated * @ordered */ @GwtTransient protected EList optionalOutputRefs; /** * The cached value of the '{@link #getWhileExecutingOutputRefs() While Executing Output Refs}' reference list. * * * @see #getWhileExecutingOutputRefs() * @generated * @ordered */ @GwtTransient protected EList whileExecutingOutputRefs; /** * The cached value of the '{@link #getInputSetRefs() Input Set Refs}' reference list. * * * @see #getInputSetRefs() * @generated * @ordered */ @GwtTransient protected EList inputSetRefs; /** * 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 OutputSetImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return Bpmn2Package.Literals.OUTPUT_SET; } /** * * * @generated */ @Override public EList getDataOutputRefs() { if (dataOutputRefs == null) { dataOutputRefs = new EObjectWithInverseEList.ManyInverse(DataOutput.class, this, Bpmn2Package.OUTPUT_SET__DATA_OUTPUT_REFS, Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_REFS); } return dataOutputRefs; } /** * * * @generated */ @Override public EList getOptionalOutputRefs() { if (optionalOutputRefs == null) { optionalOutputRefs = new EObjectWithInverseEList.ManyInverse(DataOutput.class, this, Bpmn2Package.OUTPUT_SET__OPTIONAL_OUTPUT_REFS, Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_OPTIONAL); } return optionalOutputRefs; } /** * * * @generated */ @Override public EList getWhileExecutingOutputRefs() { if (whileExecutingOutputRefs == null) { whileExecutingOutputRefs = new EObjectWithInverseEList.ManyInverse(DataOutput.class, this, Bpmn2Package.OUTPUT_SET__WHILE_EXECUTING_OUTPUT_REFS, Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_WHILE_EXECUTING); } return whileExecutingOutputRefs; } /** * * * @generated */ @Override public EList getInputSetRefs() { if (inputSetRefs == null) { inputSetRefs = new EObjectWithInverseEList.ManyInverse(InputSet.class, this, Bpmn2Package.OUTPUT_SET__INPUT_SET_REFS, Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS); } return inputSetRefs; } /** * * * @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.OUTPUT_SET__NAME, oldName, name)); } /** * * * @generated */ @SuppressWarnings("unchecked") @Override public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case Bpmn2Package.OUTPUT_SET__DATA_OUTPUT_REFS: return ((InternalEList) (InternalEList) getDataOutputRefs()).basicAdd(otherEnd, msgs); case Bpmn2Package.OUTPUT_SET__OPTIONAL_OUTPUT_REFS: return ((InternalEList) (InternalEList) getOptionalOutputRefs()).basicAdd(otherEnd, msgs); case Bpmn2Package.OUTPUT_SET__WHILE_EXECUTING_OUTPUT_REFS: return ((InternalEList) (InternalEList) getWhileExecutingOutputRefs()) .basicAdd(otherEnd, msgs); case Bpmn2Package.OUTPUT_SET__INPUT_SET_REFS: return ((InternalEList) (InternalEList) getInputSetRefs()).basicAdd(otherEnd, msgs); } return super.eInverseAdd(otherEnd, featureID, msgs); } /** * * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case Bpmn2Package.OUTPUT_SET__DATA_OUTPUT_REFS: return ((InternalEList) getDataOutputRefs()).basicRemove(otherEnd, msgs); case Bpmn2Package.OUTPUT_SET__OPTIONAL_OUTPUT_REFS: return ((InternalEList) getOptionalOutputRefs()).basicRemove(otherEnd, msgs); case Bpmn2Package.OUTPUT_SET__WHILE_EXECUTING_OUTPUT_REFS: return ((InternalEList) getWhileExecutingOutputRefs()).basicRemove(otherEnd, msgs); case Bpmn2Package.OUTPUT_SET__INPUT_SET_REFS: return ((InternalEList) getInputSetRefs()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case Bpmn2Package.OUTPUT_SET__DATA_OUTPUT_REFS: return getDataOutputRefs(); case Bpmn2Package.OUTPUT_SET__OPTIONAL_OUTPUT_REFS: return getOptionalOutputRefs(); case Bpmn2Package.OUTPUT_SET__WHILE_EXECUTING_OUTPUT_REFS: return getWhileExecutingOutputRefs(); case Bpmn2Package.OUTPUT_SET__INPUT_SET_REFS: return getInputSetRefs(); case Bpmn2Package.OUTPUT_SET__NAME: return getName(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case Bpmn2Package.OUTPUT_SET__DATA_OUTPUT_REFS: getDataOutputRefs().clear(); getDataOutputRefs().addAll((Collection) newValue); return; case Bpmn2Package.OUTPUT_SET__OPTIONAL_OUTPUT_REFS: getOptionalOutputRefs().clear(); getOptionalOutputRefs().addAll((Collection) newValue); return; case Bpmn2Package.OUTPUT_SET__WHILE_EXECUTING_OUTPUT_REFS: getWhileExecutingOutputRefs().clear(); getWhileExecutingOutputRefs().addAll((Collection) newValue); return; case Bpmn2Package.OUTPUT_SET__INPUT_SET_REFS: getInputSetRefs().clear(); getInputSetRefs().addAll((Collection) newValue); return; case Bpmn2Package.OUTPUT_SET__NAME: setName((String) newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case Bpmn2Package.OUTPUT_SET__DATA_OUTPUT_REFS: getDataOutputRefs().clear(); return; case Bpmn2Package.OUTPUT_SET__OPTIONAL_OUTPUT_REFS: getOptionalOutputRefs().clear(); return; case Bpmn2Package.OUTPUT_SET__WHILE_EXECUTING_OUTPUT_REFS: getWhileExecutingOutputRefs().clear(); return; case Bpmn2Package.OUTPUT_SET__INPUT_SET_REFS: getInputSetRefs().clear(); return; case Bpmn2Package.OUTPUT_SET__NAME: setName(NAME_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case Bpmn2Package.OUTPUT_SET__DATA_OUTPUT_REFS: return dataOutputRefs != null && !dataOutputRefs.isEmpty(); case Bpmn2Package.OUTPUT_SET__OPTIONAL_OUTPUT_REFS: return optionalOutputRefs != null && !optionalOutputRefs.isEmpty(); case Bpmn2Package.OUTPUT_SET__WHILE_EXECUTING_OUTPUT_REFS: return whileExecutingOutputRefs != null && !whileExecutingOutputRefs.isEmpty(); case Bpmn2Package.OUTPUT_SET__INPUT_SET_REFS: return inputSetRefs != null && !inputSetRefs.isEmpty(); case Bpmn2Package.OUTPUT_SET__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(); } } //OutputSetImpl




© 2015 - 2025 Weber Informatics LLC | Privacy Policy