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

org.omg.bpmn.bpmn2.impl.ResourceParameterImpl Maven / Gradle / Ivy

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

import org.omg.bpmn.bpmn2.Bpmn2Package;
import org.omg.bpmn.bpmn2.ItemDefinition;
import org.omg.bpmn.bpmn2.ResourceParameter;

/**
 * 
 * An implementation of the model object 'Resource Parameter'.
 * 
 * 

* The following features are implemented: *

*
    *
  • {@link org.omg.bpmn.bpmn2.impl.ResourceParameterImpl#isIsRequired Is Required}
  • *
  • {@link org.omg.bpmn.bpmn2.impl.ResourceParameterImpl#getName Name}
  • *
  • {@link org.omg.bpmn.bpmn2.impl.ResourceParameterImpl#getType Type}
  • *
* * @generated */ public class ResourceParameterImpl extends BaseElementImpl implements ResourceParameter { /** * The default value of the '{@link #isIsRequired() Is Required}' attribute. * * * @see #isIsRequired() * @generated * @ordered */ protected static final boolean IS_REQUIRED_EDEFAULT = false; /** * The cached value of the '{@link #isIsRequired() Is Required}' attribute. * * * @see #isIsRequired() * @generated * @ordered */ protected boolean isRequired = IS_REQUIRED_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; /** * The cached value of the '{@link #getType() Type}' reference. * * * @see #getType() * @generated * @ordered */ protected ItemDefinition type; /** * * * @generated */ protected ResourceParameterImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return Bpmn2Package.eINSTANCE.getResourceParameter(); } /** * * * @generated */ @Override public boolean isIsRequired() { return isRequired; } /** * * * @generated */ @Override 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)); } /** * * * @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.RESOURCE_PARAMETER__NAME, oldName, name)); } /** * * * @generated */ @Override 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; } /** * * * @generated */ public ItemDefinition basicGetType() { return type; } /** * * * @generated */ @Override public void setType(ItemDefinition newType) { ItemDefinition oldType = type; type = newType; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, Bpmn2Package.RESOURCE_PARAMETER__TYPE, oldType, type)); } /** * * * @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); } /** * * * @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); } /** * * * @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); } /** * * * @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); } /** * * * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuilder result = new StringBuilder(super.toString()); result.append(" (isRequired: "); result.append(isRequired); result.append(", name: "); result.append(name); result.append(')'); return result.toString(); } } //ResourceParameterImpl




© 2015 - 2024 Weber Informatics LLC | Privacy Policy