/** * Copyright (c) 2008, 2015 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 Corporation - initial API and implementation */ package org.eclipse.e4.ui.model.application.impl; import org.eclipse.e4.ui.model.application.MContribution; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Contribution</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.eclipse.e4.ui.model.application.impl.ContributionImpl#getContributionURI <em>Contribution URI</em>}</li> * <li>{@link org.eclipse.e4.ui.model.application.impl.ContributionImpl#getObject <em>Object</em>}</li> * </ul> * * @generated */ public abstract class ContributionImpl extends ApplicationElementImpl implements MContribution { /** * The default value of the '{@link #getContributionURI() <em>Contribution URI</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getContributionURI() * @generated * @ordered */ protected static final String CONTRIBUTION_URI_EDEFAULT = null; /** * The cached value of the '{@link #getContributionURI() <em>Contribution URI</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getContributionURI() * @generated * @ordered */ protected String contributionURI = CONTRIBUTION_URI_EDEFAULT; /** * The default value of the '{@link #getObject() <em>Object</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getObject() * @generated * @ordered */ protected static final Object OBJECT_EDEFAULT = null; /** * The cached value of the '{@link #getObject() <em>Object</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getObject() * @generated * @ordered */ protected Object object = OBJECT_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ContributionImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return ApplicationPackageImpl.Literals.CONTRIBUTION; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getContributionURI() { return contributionURI; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setContributionURI(String newContributionURI) { String oldContributionURI = contributionURI; contributionURI = newContributionURI; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ApplicationPackageImpl.CONTRIBUTION__CONTRIBUTION_URI, oldContributionURI, contributionURI)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Object getObject() { return object; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setObject(Object newObject) { Object oldObject = object; object = newObject; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ApplicationPackageImpl.CONTRIBUTION__OBJECT, oldObject, object)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case ApplicationPackageImpl.CONTRIBUTION__CONTRIBUTION_URI: return getContributionURI(); case ApplicationPackageImpl.CONTRIBUTION__OBJECT: return getObject(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case ApplicationPackageImpl.CONTRIBUTION__CONTRIBUTION_URI: setContributionURI((String)newValue); return; case ApplicationPackageImpl.CONTRIBUTION__OBJECT: setObject(newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case ApplicationPackageImpl.CONTRIBUTION__CONTRIBUTION_URI: setContributionURI(CONTRIBUTION_URI_EDEFAULT); return; case ApplicationPackageImpl.CONTRIBUTION__OBJECT: setObject(OBJECT_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case ApplicationPackageImpl.CONTRIBUTION__CONTRIBUTION_URI: return CONTRIBUTION_URI_EDEFAULT == null ? contributionURI != null : !CONTRIBUTION_URI_EDEFAULT.equals(contributionURI); case ApplicationPackageImpl.CONTRIBUTION__OBJECT: return OBJECT_EDEFAULT == null ? object != null : !OBJECT_EDEFAULT.equals(object); } 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(" (contributionURI: "); //$NON-NLS-1$ result.append(contributionURI); result.append(", object: "); //$NON-NLS-1$ result.append(object); result.append(')'); return result.toString(); } } //ContributionImpl