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

org.eclipse.bpmn2.impl.InterfaceImpl 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.Interface;
import org.eclipse.bpmn2.Operation;

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.InternalEList;

/**
 * 
 * An implementation of the model object 'Interface'.
 * 
 * 

* The following features are implemented: *

*
    *
  • {@link org.eclipse.bpmn2.impl.InterfaceImpl#getOperations Operations}
  • *
  • {@link org.eclipse.bpmn2.impl.InterfaceImpl#getName Name}
  • *
  • {@link org.eclipse.bpmn2.impl.InterfaceImpl#getImplementationRef Implementation Ref}
  • *
* * @generated */ public class InterfaceImpl extends RootElementImpl implements Interface { /** * The cached value of the '{@link #getOperations() Operations}' containment reference list. * * * @see #getOperations() * @generated * @ordered */ @GwtTransient protected EList operations; /** * 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; /** * The default value of the '{@link #getImplementationRef() Implementation Ref}' attribute. * * * @see #getImplementationRef() * @generated * @ordered */ protected static final String IMPLEMENTATION_REF_EDEFAULT = null; /** * The cached value of the '{@link #getImplementationRef() Implementation Ref}' attribute. * * * @see #getImplementationRef() * @generated * @ordered */ @GwtTransient protected String implementationRef = IMPLEMENTATION_REF_EDEFAULT; /** * * * @generated */ protected InterfaceImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return Bpmn2Package.Literals.INTERFACE; } /** * * * @generated */ @Override public EList getOperations() { if (operations == null) { operations = new EObjectContainmentEList(Operation.class, this, Bpmn2Package.INTERFACE__OPERATIONS); } return operations; } /** * * * @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.INTERFACE__NAME, oldName, name)); } /** * * * @generated */ @Override public String getImplementationRef() { return implementationRef; } /** * * * @generated */ @Override public void setImplementationRef(String newImplementationRef) { String oldImplementationRef = implementationRef; implementationRef = newImplementationRef; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, Bpmn2Package.INTERFACE__IMPLEMENTATION_REF, oldImplementationRef, implementationRef)); } /** * * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case Bpmn2Package.INTERFACE__OPERATIONS: return ((InternalEList) getOperations()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case Bpmn2Package.INTERFACE__OPERATIONS: return getOperations(); case Bpmn2Package.INTERFACE__NAME: return getName(); case Bpmn2Package.INTERFACE__IMPLEMENTATION_REF: return getImplementationRef(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case Bpmn2Package.INTERFACE__OPERATIONS: getOperations().clear(); getOperations().addAll((Collection) newValue); return; case Bpmn2Package.INTERFACE__NAME: setName((String) newValue); return; case Bpmn2Package.INTERFACE__IMPLEMENTATION_REF: setImplementationRef((String) newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case Bpmn2Package.INTERFACE__OPERATIONS: getOperations().clear(); return; case Bpmn2Package.INTERFACE__NAME: setName(NAME_EDEFAULT); return; case Bpmn2Package.INTERFACE__IMPLEMENTATION_REF: setImplementationRef(IMPLEMENTATION_REF_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case Bpmn2Package.INTERFACE__OPERATIONS: return operations != null && !operations.isEmpty(); case Bpmn2Package.INTERFACE__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); case Bpmn2Package.INTERFACE__IMPLEMENTATION_REF: return IMPLEMENTATION_REF_EDEFAULT == null ? implementationRef != null : !IMPLEMENTATION_REF_EDEFAULT.equals(implementationRef); } 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(", implementationRef: "); result.append(implementationRef); result.append(')'); return result.toString(); } } //InterfaceImpl




© 2015 - 2025 Weber Informatics LLC | Privacy Policy