blob: 99a81239e0a298fa300d08787277be2b052e4963 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.eclipse.mylyn.docs.epub.opf.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.mylyn.docs.epub.opf.Itemref;
import org.eclipse.mylyn.docs.epub.opf.OPFPackage;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Itemref</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.mylyn.docs.epub.opf.impl.ItemrefImpl#getIdref <em>Idref</em>}</li>
* <li>{@link org.eclipse.mylyn.docs.epub.opf.impl.ItemrefImpl#getLinear <em>Linear</em>}</li>
* </ul>
*
* @generated
*/
public class ItemrefImpl extends EObjectImpl implements Itemref {
/**
* The default value of the '{@link #getIdref() <em>Idref</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getIdref()
* @generated
* @ordered
*/
protected static final String IDREF_EDEFAULT = null;
/**
* The cached value of the '{@link #getIdref() <em>Idref</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getIdref()
* @generated
* @ordered
*/
protected String idref = IDREF_EDEFAULT;
/**
* The default value of the '{@link #getLinear() <em>Linear</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getLinear()
* @generated
* @ordered
*/
protected static final String LINEAR_EDEFAULT = null;
/**
* The cached value of the '{@link #getLinear() <em>Linear</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getLinear()
* @generated
* @ordered
*/
protected String linear = LINEAR_EDEFAULT;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ItemrefImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return OPFPackage.Literals.ITEMREF;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getIdref() {
return idref;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setIdref(String newIdref) {
String oldIdref = idref;
idref = newIdref;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, OPFPackage.ITEMREF__IDREF, oldIdref, idref));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getLinear() {
return linear;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setLinear(String newLinear) {
String oldLinear = linear;
linear = newLinear;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, OPFPackage.ITEMREF__LINEAR, oldLinear, linear));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case OPFPackage.ITEMREF__IDREF:
return getIdref();
case OPFPackage.ITEMREF__LINEAR:
return getLinear();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case OPFPackage.ITEMREF__IDREF:
setIdref((String)newValue);
return;
case OPFPackage.ITEMREF__LINEAR:
setLinear((String)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case OPFPackage.ITEMREF__IDREF:
setIdref(IDREF_EDEFAULT);
return;
case OPFPackage.ITEMREF__LINEAR:
setLinear(LINEAR_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case OPFPackage.ITEMREF__IDREF:
return IDREF_EDEFAULT == null ? idref != null : !IDREF_EDEFAULT.equals(idref);
case OPFPackage.ITEMREF__LINEAR:
return LINEAR_EDEFAULT == null ? linear != null : !LINEAR_EDEFAULT.equals(linear);
}
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(" (idref: "); //$NON-NLS-1$
result.append(idref);
result.append(", linear: "); //$NON-NLS-1$
result.append(linear);
result.append(')');
return result.toString();
}
} //ItemrefImpl