/** * Copyright (c) 2002-2006 IBM Corporation and others. * 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: * IBM - Initial API and implementation */ package org.eclipse.emf.java.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.eclipse.emf.ecore.util.EcoreUtil; import org.eclipse.emf.java.JClass; import org.eclipse.emf.java.JMethod; import org.eclipse.emf.java.JParameter; import org.eclipse.emf.java.JavaPackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>JParameter</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.eclipse.emf.java.impl.JParameterImpl#isFinal <em>Final</em>}</li> * <li>{@link org.eclipse.emf.java.impl.JParameterImpl#getMethod <em>Method</em>}</li> * <li>{@link org.eclipse.emf.java.impl.JParameterImpl#getType <em>Type</em>}</li> * </ul> * </p> * * @generated */ public class JParameterImpl extends JModelElementImpl implements JParameter { /** * The default value of the '{@link #isFinal() <em>Final</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isFinal() * @generated * @ordered */ protected static final boolean FINAL_EDEFAULT = false; /** * The cached value of the '{@link #isFinal() <em>Final</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isFinal() * @generated * @ordered */ protected boolean final_ = FINAL_EDEFAULT; /** * The cached value of the '{@link #getType() <em>Type</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getType() * @generated * @ordered */ protected JClass type; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected JParameterImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return JavaPackage.Literals.JPARAMETER; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public boolean isFinal() { return final_; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setFinal(boolean newFinal) { boolean oldFinal = final_; final_ = newFinal; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, JavaPackage.JPARAMETER__FINAL, oldFinal, final_)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public JMethod getMethod() { if (eContainerFeatureID() != JavaPackage.JPARAMETER__METHOD) return null; return (JMethod)eContainer(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetMethod(JMethod newMethod, NotificationChain msgs) { msgs = eBasicSetContainer((InternalEObject)newMethod, JavaPackage.JPARAMETER__METHOD, msgs); return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setMethod(JMethod newMethod) { if (newMethod != eInternalContainer() || (eContainerFeatureID() != JavaPackage.JPARAMETER__METHOD && newMethod != null)) { if (EcoreUtil.isAncestor(this, newMethod)) throw new IllegalArgumentException("Recursive containment not allowed for " + toString()); NotificationChain msgs = null; if (eInternalContainer() != null) msgs = eBasicRemoveFromContainer(msgs); if (newMethod != null) msgs = ((InternalEObject)newMethod).eInverseAdd(this, JavaPackage.JMETHOD__PARAMETERS, JMethod.class, msgs); msgs = basicSetMethod(newMethod, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, JavaPackage.JPARAMETER__METHOD, newMethod, newMethod)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public JClass getType() { if (type != null && type.eIsProxy()) { InternalEObject oldType = (InternalEObject)type; type = (JClass)eResolveProxy(oldType); if (type != oldType) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, JavaPackage.JPARAMETER__TYPE, oldType, type)); } } return type; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public JClass basicGetType() { return type; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setType(JClass newType) { JClass oldType = type; type = newType; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, JavaPackage.JPARAMETER__TYPE, oldType, type)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case JavaPackage.JPARAMETER__METHOD: if (eInternalContainer() != null) msgs = eBasicRemoveFromContainer(msgs); return basicSetMethod((JMethod)otherEnd, msgs); } return super.eInverseAdd(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case JavaPackage.JPARAMETER__METHOD: return basicSetMethod(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eBasicRemoveFromContainerFeature(NotificationChain msgs) { switch (eContainerFeatureID()) { case JavaPackage.JPARAMETER__METHOD: return eInternalContainer().eInverseRemove(this, JavaPackage.JMETHOD__PARAMETERS, JMethod.class, msgs); } return super.eBasicRemoveFromContainerFeature(msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case JavaPackage.JPARAMETER__FINAL: return isFinal(); case JavaPackage.JPARAMETER__METHOD: return getMethod(); case JavaPackage.JPARAMETER__TYPE: if (resolve) return getType(); return basicGetType(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case JavaPackage.JPARAMETER__FINAL: setFinal((Boolean)newValue); return; case JavaPackage.JPARAMETER__METHOD: setMethod((JMethod)newValue); return; case JavaPackage.JPARAMETER__TYPE: setType((JClass)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case JavaPackage.JPARAMETER__FINAL: setFinal(FINAL_EDEFAULT); return; case JavaPackage.JPARAMETER__METHOD: setMethod((JMethod)null); return; case JavaPackage.JPARAMETER__TYPE: setType((JClass)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case JavaPackage.JPARAMETER__FINAL: return final_ != FINAL_EDEFAULT; case JavaPackage.JPARAMETER__METHOD: return getMethod() != null; case JavaPackage.JPARAMETER__TYPE: return type != 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(" (final: "); result.append(final_); result.append(')'); return result.toString(); } } //JParameterImpl