org.eclipse.bpmn2.impl.ResourceParameterImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kie-wb-common-stunner-bpmn-emf Show documentation
Show all versions of kie-wb-common-stunner-bpmn-emf Show documentation
Kie Workbench - Common - Stunner - BPMN Definition Set - GWT Support for Eclipse EMF/XMI
/**
*
*
* 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 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;
/**
*
* An implementation of the model object 'Resource Parameter'.
*
*
* The following features are implemented:
*
*
* - {@link org.eclipse.bpmn2.impl.ResourceParameterImpl#isIsRequired Is Required}
* - {@link org.eclipse.bpmn2.impl.ResourceParameterImpl#getName Name}
* - {@link org.eclipse.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
*/
@GwtTransient
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
*/
@GwtTransient
protected String name = NAME_EDEFAULT;
/**
* The cached value of the '{@link #getType() Type}' reference.
*
*
* @see #getType()
* @generated
* @ordered
*/
@GwtTransient
protected ItemDefinition type;
/**
*
*
* @generated
*/
protected ResourceParameterImpl() {
super();
}
/**
*
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return Bpmn2Package.Literals.RESOURCE_PARAMETER;
}
/**
*
*
* @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 - 2025 Weber Informatics LLC | Privacy Policy