blob: 603640d71aa72df706af4503733fbb3d55a9092c [file] [log] [blame]
/**
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* 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:
* Thales Corporate Services S.A.S - initial API and implementation
*
* $Id$
*/
package org.eclipse.egf.portfolio.eclipse.build.buildstep.impl;
import org.eclipse.egf.portfolio.eclipse.build.buildstep.BuildstepPackage;
import org.eclipse.egf.portfolio.eclipse.build.buildstep.ResultStep;
import org.eclipse.egf.portfolio.eclipse.build.buildstep.ResultStepBuildLocation;
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;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Result Step Build Location</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.egf.portfolio.eclipse.build.buildstep.impl.ResultStepBuildLocationImpl#getResultStep <em>Result Step</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class ResultStepBuildLocationImpl extends BuildLocationImpl implements ResultStepBuildLocation {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final String copyright = " Copyright (c) 2009-2010 Thales Corporate Services S.A.S.\r\n All rights reserved. This program and the accompanying materials\r\n are made available under the terms of the Eclipse Public License v1.0\r\n which accompanies this distribution, and is available at\r\n http://www.eclipse.org/legal/epl-v10.html\r\n \r\n Contributors:\r\n Thales Corporate Services S.A.S - initial API and implementation";
/**
* The cached value of the '{@link #getResultStep() <em>Result Step</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getResultStep()
* @generated
* @ordered
*/
protected ResultStep resultStep;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ResultStepBuildLocationImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return BuildstepPackage.Literals.RESULT_STEP_BUILD_LOCATION;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ResultStep getResultStep() {
if (resultStep != null && resultStep.eIsProxy()) {
InternalEObject oldResultStep = (InternalEObject)resultStep;
resultStep = (ResultStep)eResolveProxy(oldResultStep);
if (resultStep != oldResultStep) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, BuildstepPackage.RESULT_STEP_BUILD_LOCATION__RESULT_STEP, oldResultStep, resultStep));
}
}
return resultStep;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ResultStep basicGetResultStep() {
return resultStep;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setResultStep(ResultStep newResultStep) {
ResultStep oldResultStep = resultStep;
resultStep = newResultStep;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, BuildstepPackage.RESULT_STEP_BUILD_LOCATION__RESULT_STEP, oldResultStep, resultStep));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case BuildstepPackage.RESULT_STEP_BUILD_LOCATION__RESULT_STEP:
if (resolve) return getResultStep();
return basicGetResultStep();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case BuildstepPackage.RESULT_STEP_BUILD_LOCATION__RESULT_STEP:
setResultStep((ResultStep)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case BuildstepPackage.RESULT_STEP_BUILD_LOCATION__RESULT_STEP:
setResultStep((ResultStep)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case BuildstepPackage.RESULT_STEP_BUILD_LOCATION__RESULT_STEP:
return resultStep != null;
}
return super.eIsSet(featureID);
}
} //ResultStepBuildLocationImpl