/** * <copyright> * * 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 * * </copyright> */ package org.eclipse.bpmn2.impl; import org.eclipse.bpmn2.Bpmn2Package; import org.eclipse.bpmn2.ItemDefinition; import org.eclipse.bpmn2.ResourceParameter; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Resource Parameter</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.eclipse.bpmn2.impl.ResourceParameterImpl#isIsRequired <em>Is Required</em>}</li> * <li>{@link org.eclipse.bpmn2.impl.ResourceParameterImpl#getName <em>Name</em>}</li> * <li>{@link org.eclipse.bpmn2.impl.ResourceParameterImpl#getType <em>Type</em>}</li> * </ul> * </p> * * @generated */ public class ResourceParameterImpl extends BaseElementImpl implements ResourceParameter { /** * The default value of the '{@link #isIsRequired() <em>Is Required</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isIsRequired() * @generated * @ordered */ protected static final boolean IS_REQUIRED_EDEFAULT = false; /** * The cached value of the '{@link #isIsRequired() <em>Is Required</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isIsRequired() * @generated * @ordered */ protected boolean isRequired = IS_REQUIRED_EDEFAULT; /** * The default value of the '{@link #getName() <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getName() * @generated * @ordered */ protected static final String NAME_EDEFAULT = null; /** * The cached value of the '{@link #getName() <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getName() * @generated * @ordered */ protected String name = NAME_EDEFAULT; /** * The cached value of the '{@link #getType() <em>Type</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getType() * @generated * @ordered */ protected ItemDefinition type; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ResourceParameterImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return Bpmn2Package.Literals.RESOURCE_PARAMETER; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public boolean isIsRequired() { return isRequired; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setIsRequired(boolean newIsRequired) { boolean oldIsRequired = isRequired; isRequired = newIsRequired; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, Bpmn2Package.RESOURCE_PARAMETER__IS_REQUIRED, oldIsRequired, isRequired)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getName() { return name; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setName(String newName) { String oldName = name; name = newName; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, Bpmn2Package.RESOURCE_PARAMETER__NAME, oldName, name)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ItemDefinition getType() { if (type != null && type.eIsProxy()) { InternalEObject oldType = (InternalEObject) type; type = (ItemDefinition) eResolveProxy(oldType); if (type != oldType) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, Bpmn2Package.RESOURCE_PARAMETER__TYPE, oldType, type)); } } return type; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ItemDefinition basicGetType() { return type; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setType(ItemDefinition newType) { ItemDefinition oldType = type; type = newType; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, Bpmn2Package.RESOURCE_PARAMETER__TYPE, oldType, type)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case Bpmn2Package.RESOURCE_PARAMETER__IS_REQUIRED: return isIsRequired(); case Bpmn2Package.RESOURCE_PARAMETER__NAME: return getName(); case Bpmn2Package.RESOURCE_PARAMETER__TYPE: if (resolve) return getType(); return basicGetType(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case Bpmn2Package.RESOURCE_PARAMETER__IS_REQUIRED: setIsRequired((Boolean) newValue); return; case Bpmn2Package.RESOURCE_PARAMETER__NAME: setName((String) newValue); return; case Bpmn2Package.RESOURCE_PARAMETER__TYPE: setType((ItemDefinition) newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case Bpmn2Package.RESOURCE_PARAMETER__IS_REQUIRED: setIsRequired(IS_REQUIRED_EDEFAULT); return; case Bpmn2Package.RESOURCE_PARAMETER__NAME: setName(NAME_EDEFAULT); return; case Bpmn2Package.RESOURCE_PARAMETER__TYPE: setType((ItemDefinition) null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case Bpmn2Package.RESOURCE_PARAMETER__IS_REQUIRED: return isRequired != IS_REQUIRED_EDEFAULT; case Bpmn2Package.RESOURCE_PARAMETER__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT .equals(name); case Bpmn2Package.RESOURCE_PARAMETER__TYPE: return type != null; } return super.eIsSet(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (isRequired: "); result.append(isRequired); result.append(", name: "); result.append(name); result.append(')'); return result.toString(); } } //ResourceParameterImpl