blob: 7a1055c9d906c9e8e824da54391e8d0f78591fb9 [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
*
*/
package org.eclipse.egf.portfolio.genchain.generationChain.impl;
import org.eclipse.egf.portfolio.genchain.generationChain.EcoreElement;
import org.eclipse.egf.portfolio.genchain.generationChain.GenerationChainPackage;
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>Ecore Element</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.egf.portfolio.genchain.generationChain.impl.EcoreElementImpl#getModelPath <em>Model Path</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public abstract class EcoreElementImpl extends GenerationElementImpl implements EcoreElement {
/**
* The default value of the '{@link #getModelPath() <em>Model Path</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getModelPath()
* @generated
* @ordered
*/
protected static final String MODEL_PATH_EDEFAULT = null;
/**
* The cached value of the '{@link #getModelPath() <em>Model Path</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getModelPath()
* @generated
* @ordered
*/
protected String modelPath = MODEL_PATH_EDEFAULT;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EcoreElementImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return GenerationChainPackage.Literals.ECORE_ELEMENT;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getModelPath() {
return modelPath;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setModelPath(String newModelPath) {
String oldModelPath = modelPath;
modelPath = newModelPath;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, GenerationChainPackage.ECORE_ELEMENT__MODEL_PATH, oldModelPath, modelPath));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case GenerationChainPackage.ECORE_ELEMENT__MODEL_PATH:
return getModelPath();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case GenerationChainPackage.ECORE_ELEMENT__MODEL_PATH:
setModelPath((String) newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case GenerationChainPackage.ECORE_ELEMENT__MODEL_PATH:
setModelPath(MODEL_PATH_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case GenerationChainPackage.ECORE_ELEMENT__MODEL_PATH:
return MODEL_PATH_EDEFAULT == null ? modelPath != null : !MODEL_PATH_EDEFAULT.equals(modelPath);
}
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(" (modelPath: ");
result.append(modelPath);
result.append(')');
return result.toString();
}
} //EcoreElementImpl