blob: 292bbcd02e8f326881beb200fddaf58d784c0fe1 [file] [log] [blame]
/**
*/
package org.eclipse.papyrus.bpmn.BPMNProfile.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.eclipse.emf.ecore.impl.MinimalEObjectImpl;
import org.eclipse.papyrus.bpmn.BPMNProfile.BPMNExtension;
import org.eclipse.papyrus.bpmn.BPMNProfile.BPMNProfilePackage;
import org.eclipse.papyrus.bpmn.BPMNProfile.ExtensionDefinition;
import org.eclipse.uml2.uml.Stereotype;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>BPMN Extension</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.bpmn.BPMNProfile.impl.BPMNExtensionImpl#getBase_Stereotype <em>Base Stereotype</em>}</li>
* <li>{@link org.eclipse.papyrus.bpmn.BPMNProfile.impl.BPMNExtensionImpl#isMustUnderstand <em>Must Understand</em>}</li>
* <li>{@link org.eclipse.papyrus.bpmn.BPMNProfile.impl.BPMNExtensionImpl#getDefinition <em>Definition</em>}</li>
* </ul>
*
* @generated
*/
public class BPMNExtensionImpl extends MinimalEObjectImpl.Container implements BPMNExtension {
/**
* The cached value of the '{@link #getBase_Stereotype() <em>Base Stereotype</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getBase_Stereotype()
* @generated
* @ordered
*/
protected Stereotype base_Stereotype;
/**
* The default value of the '{@link #isMustUnderstand() <em>Must Understand</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isMustUnderstand()
* @generated
* @ordered
*/
protected static final boolean MUST_UNDERSTAND_EDEFAULT = false;
/**
* The cached value of the '{@link #isMustUnderstand() <em>Must Understand</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isMustUnderstand()
* @generated
* @ordered
*/
protected boolean mustUnderstand = MUST_UNDERSTAND_EDEFAULT;
/**
* The cached value of the '{@link #getDefinition() <em>Definition</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getDefinition()
* @generated
* @ordered
*/
protected ExtensionDefinition definition;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected BPMNExtensionImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return BPMNProfilePackage.eINSTANCE.getBPMNExtension();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Stereotype getBase_Stereotype() {
if (base_Stereotype != null && base_Stereotype.eIsProxy()) {
InternalEObject oldBase_Stereotype = (InternalEObject)base_Stereotype;
base_Stereotype = (Stereotype)eResolveProxy(oldBase_Stereotype);
if (base_Stereotype != oldBase_Stereotype) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, BPMNProfilePackage.BPMN_EXTENSION__BASE_STEREOTYPE, oldBase_Stereotype, base_Stereotype));
}
}
return base_Stereotype;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Stereotype basicGetBase_Stereotype() {
return base_Stereotype;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setBase_Stereotype(Stereotype newBase_Stereotype) {
Stereotype oldBase_Stereotype = base_Stereotype;
base_Stereotype = newBase_Stereotype;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, BPMNProfilePackage.BPMN_EXTENSION__BASE_STEREOTYPE, oldBase_Stereotype, base_Stereotype));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean isMustUnderstand() {
return mustUnderstand;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setMustUnderstand(boolean newMustUnderstand) {
boolean oldMustUnderstand = mustUnderstand;
mustUnderstand = newMustUnderstand;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, BPMNProfilePackage.BPMN_EXTENSION__MUST_UNDERSTAND, oldMustUnderstand, mustUnderstand));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ExtensionDefinition getDefinition() {
if (definition != null && definition.eIsProxy()) {
InternalEObject oldDefinition = (InternalEObject)definition;
definition = (ExtensionDefinition)eResolveProxy(oldDefinition);
if (definition != oldDefinition) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, BPMNProfilePackage.BPMN_EXTENSION__DEFINITION, oldDefinition, definition));
}
}
return definition;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ExtensionDefinition basicGetDefinition() {
return definition;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setDefinition(ExtensionDefinition newDefinition) {
ExtensionDefinition oldDefinition = definition;
definition = newDefinition;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, BPMNProfilePackage.BPMN_EXTENSION__DEFINITION, oldDefinition, definition));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case BPMNProfilePackage.BPMN_EXTENSION__BASE_STEREOTYPE:
if (resolve) return getBase_Stereotype();
return basicGetBase_Stereotype();
case BPMNProfilePackage.BPMN_EXTENSION__MUST_UNDERSTAND:
return isMustUnderstand();
case BPMNProfilePackage.BPMN_EXTENSION__DEFINITION:
if (resolve) return getDefinition();
return basicGetDefinition();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case BPMNProfilePackage.BPMN_EXTENSION__BASE_STEREOTYPE:
setBase_Stereotype((Stereotype)newValue);
return;
case BPMNProfilePackage.BPMN_EXTENSION__MUST_UNDERSTAND:
setMustUnderstand((Boolean)newValue);
return;
case BPMNProfilePackage.BPMN_EXTENSION__DEFINITION:
setDefinition((ExtensionDefinition)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case BPMNProfilePackage.BPMN_EXTENSION__BASE_STEREOTYPE:
setBase_Stereotype((Stereotype)null);
return;
case BPMNProfilePackage.BPMN_EXTENSION__MUST_UNDERSTAND:
setMustUnderstand(MUST_UNDERSTAND_EDEFAULT);
return;
case BPMNProfilePackage.BPMN_EXTENSION__DEFINITION:
setDefinition((ExtensionDefinition)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case BPMNProfilePackage.BPMN_EXTENSION__BASE_STEREOTYPE:
return base_Stereotype != null;
case BPMNProfilePackage.BPMN_EXTENSION__MUST_UNDERSTAND:
return mustUnderstand != MUST_UNDERSTAND_EDEFAULT;
case BPMNProfilePackage.BPMN_EXTENSION__DEFINITION:
return definition != 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(" (mustUnderstand: ");
result.append(mustUnderstand);
result.append(')');
return result.toString();
}
} //BPMNExtensionImpl