bpsim.impl.VendorExtensionImpl 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
/**
*/
package bpsim.impl;
import bpsim.BpsimPackage;
import bpsim.VendorExtension;
import com.google.gwt.user.client.rpc.GwtTransient;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.impl.EObjectImpl;
import org.eclipse.emf.ecore.util.BasicFeatureMap;
import org.eclipse.emf.ecore.util.FeatureMap;
import org.eclipse.emf.ecore.util.InternalEList;
/**
*
* An implementation of the model object 'Vendor Extension'.
*
*
* The following features are implemented:
*
*
* - {@link bpsim.impl.VendorExtensionImpl#getAny Any}
* - {@link bpsim.impl.VendorExtensionImpl#getName Name}
* - {@link bpsim.impl.VendorExtensionImpl#getAnyAttribute Any Attribute}
*
*
* @generated
*/
public class VendorExtensionImpl extends EObjectImpl implements VendorExtension {
/**
* The cached value of the '{@link #getAny() Any}' attribute list.
*
*
* @see #getAny()
* @generated
* @ordered
*/
@GwtTransient
protected FeatureMap any;
/**
* 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 #getAnyAttribute() Any Attribute}' attribute list.
*
*
* @see #getAnyAttribute()
* @generated
* @ordered
*/
@GwtTransient
protected FeatureMap anyAttribute;
/**
*
*
* @generated
*/
protected VendorExtensionImpl() {
super();
}
/**
*
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return BpsimPackage.Literals.VENDOR_EXTENSION;
}
/**
*
*
* @generated
*/
@Override
public FeatureMap getAny() {
if (any == null) {
any = new BasicFeatureMap(this, BpsimPackage.VENDOR_EXTENSION__ANY);
}
return any;
}
/**
*
*
* @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, BpsimPackage.VENDOR_EXTENSION__NAME, oldName, name));
}
/**
*
*
* @generated
*/
@Override
public FeatureMap getAnyAttribute() {
if (anyAttribute == null) {
anyAttribute = new BasicFeatureMap(this, BpsimPackage.VENDOR_EXTENSION__ANY_ATTRIBUTE);
}
return anyAttribute;
}
/**
*
*
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case BpsimPackage.VENDOR_EXTENSION__ANY:
return ((InternalEList>)getAny()).basicRemove(otherEnd, msgs);
case BpsimPackage.VENDOR_EXTENSION__ANY_ATTRIBUTE:
return ((InternalEList>)getAnyAttribute()).basicRemove(otherEnd, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
*
*
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case BpsimPackage.VENDOR_EXTENSION__ANY:
if (coreType) return getAny();
return ((FeatureMap.Internal)getAny()).getWrapper();
case BpsimPackage.VENDOR_EXTENSION__NAME:
return getName();
case BpsimPackage.VENDOR_EXTENSION__ANY_ATTRIBUTE:
if (coreType) return getAnyAttribute();
return ((FeatureMap.Internal)getAnyAttribute()).getWrapper();
}
return super.eGet(featureID, resolve, coreType);
}
/**
*
*
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case BpsimPackage.VENDOR_EXTENSION__ANY:
((FeatureMap.Internal)getAny()).set(newValue);
return;
case BpsimPackage.VENDOR_EXTENSION__NAME:
setName((String)newValue);
return;
case BpsimPackage.VENDOR_EXTENSION__ANY_ATTRIBUTE:
((FeatureMap.Internal)getAnyAttribute()).set(newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
*
*
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case BpsimPackage.VENDOR_EXTENSION__ANY:
getAny().clear();
return;
case BpsimPackage.VENDOR_EXTENSION__NAME:
setName(NAME_EDEFAULT);
return;
case BpsimPackage.VENDOR_EXTENSION__ANY_ATTRIBUTE:
getAnyAttribute().clear();
return;
}
super.eUnset(featureID);
}
/**
*
*
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case BpsimPackage.VENDOR_EXTENSION__ANY:
return any != null && !any.isEmpty();
case BpsimPackage.VENDOR_EXTENSION__NAME:
return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
case BpsimPackage.VENDOR_EXTENSION__ANY_ATTRIBUTE:
return anyAttribute != null && !anyAttribute.isEmpty();
}
return super.eIsSet(featureID);
}
/**
*
*
* @generated
*/
@Override
public String toString() {
if (eIsProxy()) return super.toString();
StringBuilder result = new StringBuilder(super.toString());
result.append(" (any: ");
result.append(any);
result.append(", name: ");
result.append(name);
result.append(", anyAttribute: ");
result.append(anyAttribute);
result.append(')');
return result.toString();
}
} //VendorExtensionImpl
© 2015 - 2025 Weber Informatics LLC | Privacy Policy