blob: ff3277ac6022f7542520f81c681f32dcf8b774c4 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2014 itemis and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* Contributors:
* itemis - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.sphinx.tests.emf.serialization.env.emf.myreqif.impl;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.impl.EObjectImpl;
import org.eclipse.sphinx.tests.emf.serialization.env.emf.myreqif.DEFINITIONType4;
import org.eclipse.sphinx.tests.emf.serialization.env.emf.myreqif.MyreqifPackage;
/**
* <!-- begin-user-doc --> An implementation of the model object '<em><b>DEFINITION Type4</b></em>'. <!-- end-user-doc
* -->
* <p>
* The following features are implemented:
* <ul>
* <li>
* {@link org.eclipse.sphinx.tests.emf.serialization.env.emf.myreqif.impl.DEFINITIONType4Impl#getATTRIBUTEDEFINITIONREALREF
* <em>ATTRIBUTEDEFINITIONREALREF</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class DEFINITIONType4Impl extends EObjectImpl implements DEFINITIONType4 {
/**
* The default value of the '{@link #getATTRIBUTEDEFINITIONREALREF() <em>ATTRIBUTEDEFINITIONREALREF</em>}'
* attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @see #getATTRIBUTEDEFINITIONREALREF()
* @generated
* @ordered
*/
protected static final String ATTRIBUTEDEFINITIONREALREF_EDEFAULT = null;
/**
* The cached value of the '{@link #getATTRIBUTEDEFINITIONREALREF() <em>ATTRIBUTEDEFINITIONREALREF</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @see #getATTRIBUTEDEFINITIONREALREF()
* @generated
* @ordered
*/
protected String aTTRIBUTEDEFINITIONREALREF = ATTRIBUTEDEFINITIONREALREF_EDEFAULT;
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
protected DEFINITIONType4Impl() {
super();
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return MyreqifPackage.Literals.DEFINITION_TYPE4;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public String getATTRIBUTEDEFINITIONREALREF() {
return aTTRIBUTEDEFINITIONREALREF;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public void setATTRIBUTEDEFINITIONREALREF(String newATTRIBUTEDEFINITIONREALREF) {
String oldATTRIBUTEDEFINITIONREALREF = aTTRIBUTEDEFINITIONREALREF;
aTTRIBUTEDEFINITIONREALREF = newATTRIBUTEDEFINITIONREALREF;
if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.SET, MyreqifPackage.DEFINITION_TYPE4__ATTRIBUTEDEFINITIONREALREF,
oldATTRIBUTEDEFINITIONREALREF, aTTRIBUTEDEFINITIONREALREF));
}
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case MyreqifPackage.DEFINITION_TYPE4__ATTRIBUTEDEFINITIONREALREF:
return getATTRIBUTEDEFINITIONREALREF();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case MyreqifPackage.DEFINITION_TYPE4__ATTRIBUTEDEFINITIONREALREF:
setATTRIBUTEDEFINITIONREALREF((String) newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case MyreqifPackage.DEFINITION_TYPE4__ATTRIBUTEDEFINITIONREALREF:
setATTRIBUTEDEFINITIONREALREF(ATTRIBUTEDEFINITIONREALREF_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case MyreqifPackage.DEFINITION_TYPE4__ATTRIBUTEDEFINITIONREALREF:
return ATTRIBUTEDEFINITIONREALREF_EDEFAULT == null ? aTTRIBUTEDEFINITIONREALREF != null : !ATTRIBUTEDEFINITIONREALREF_EDEFAULT
.equals(aTTRIBUTEDEFINITIONREALREF);
}
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(" (aTTRIBUTEDEFINITIONREALREF: ");
result.append(aTTRIBUTEDEFINITIONREALREF);
result.append(')');
return result.toString();
}
} // DEFINITIONType4Impl