/** * <copyright> * </copyright> * * $Id$ */ package org.jboss.tools.smooks.model.smooks.impl; 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.jboss.tools.smooks.model.smooks.ConditionType; import org.jboss.tools.smooks.model.smooks.ElementVisitor; import org.jboss.tools.smooks.model.smooks.SmooksPackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Element Visitor</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.jboss.tools.smooks.model.smooks.impl.ElementVisitorImpl#getCondition <em>Condition</em>}</li> * <li>{@link org.jboss.tools.smooks.model.smooks.impl.ElementVisitorImpl#getTargetProfile <em>Target Profile</em>}</li> * </ul> * </p> * * @generated */ public abstract class ElementVisitorImpl extends AbstractResourceConfigImpl implements ElementVisitor { /** * The cached value of the '{@link #getCondition() <em>Condition</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getCondition() * @generated * @ordered */ protected ConditionType condition; /** * The default value of the '{@link #getTargetProfile() <em>Target Profile</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getTargetProfile() * @generated * @ordered */ protected static final String TARGET_PROFILE_EDEFAULT = null; /** * The cached value of the '{@link #getTargetProfile() <em>Target Profile</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getTargetProfile() * @generated * @ordered */ protected String targetProfile = TARGET_PROFILE_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ElementVisitorImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return SmooksPackage.Literals.ELEMENT_VISITOR; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ConditionType getCondition() { return condition; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetCondition(ConditionType newCondition, NotificationChain msgs) { ConditionType oldCondition = condition; condition = newCondition; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, SmooksPackage.ELEMENT_VISITOR__CONDITION, oldCondition, newCondition); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setCondition(ConditionType newCondition) { if (newCondition != condition) { NotificationChain msgs = null; if (condition != null) msgs = ((InternalEObject)condition).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - SmooksPackage.ELEMENT_VISITOR__CONDITION, null, msgs); if (newCondition != null) msgs = ((InternalEObject)newCondition).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - SmooksPackage.ELEMENT_VISITOR__CONDITION, null, msgs); msgs = basicSetCondition(newCondition, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, SmooksPackage.ELEMENT_VISITOR__CONDITION, newCondition, newCondition)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getTargetProfile() { return targetProfile; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setTargetProfile(String newTargetProfile) { String oldTargetProfile = targetProfile; targetProfile = newTargetProfile; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, SmooksPackage.ELEMENT_VISITOR__TARGET_PROFILE, oldTargetProfile, targetProfile)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case SmooksPackage.ELEMENT_VISITOR__CONDITION: return basicSetCondition(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case SmooksPackage.ELEMENT_VISITOR__CONDITION: return getCondition(); case SmooksPackage.ELEMENT_VISITOR__TARGET_PROFILE: return getTargetProfile(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case SmooksPackage.ELEMENT_VISITOR__CONDITION: setCondition((ConditionType)newValue); return; case SmooksPackage.ELEMENT_VISITOR__TARGET_PROFILE: setTargetProfile((String)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case SmooksPackage.ELEMENT_VISITOR__CONDITION: setCondition((ConditionType)null); return; case SmooksPackage.ELEMENT_VISITOR__TARGET_PROFILE: setTargetProfile(TARGET_PROFILE_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case SmooksPackage.ELEMENT_VISITOR__CONDITION: return condition != null; case SmooksPackage.ELEMENT_VISITOR__TARGET_PROFILE: return TARGET_PROFILE_EDEFAULT == null ? targetProfile != null : !TARGET_PROFILE_EDEFAULT.equals(targetProfile); } 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(" (targetProfile: "); //$NON-NLS-1$ result.append(targetProfile); result.append(')'); return result.toString(); } } //ElementVisitorImpl