blob: b8df9faa42c9880aea0dff489bb30b5e268b7c6b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Fundación Tecnalia Research & Innovation.
*
* 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:
* Huascar Espinoza - initial API and implementation
* Alejandra Ruíz - initial API and implementation
* Idoya Del Río - initial API and implementation
* Mari Carmen Palacios - initial API and implementation
* Angel López - initial API and implementation
*******************************************************************************/
/**
*/
package org.eclipse.opencert.sam.agree.agreement.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.MinimalEObjectImpl;
import org.eclipse.opencert.sam.agree.agreement.AgreementPackage;
import org.eclipse.opencert.sam.agree.agreement.Noun;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Noun</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.opencert.sam.agree.agreement.impl.NounImpl#getNoun <em>Noun</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class NounImpl extends MinimalEObjectImpl.Container implements Noun
{
/**
* The default value of the '{@link #getNoun() <em>Noun</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getNoun()
* @generated
* @ordered
*/
protected static final String NOUN_EDEFAULT = null;
/**
* The cached value of the '{@link #getNoun() <em>Noun</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getNoun()
* @generated
* @ordered
*/
protected String noun = NOUN_EDEFAULT;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected NounImpl()
{
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass()
{
return AgreementPackage.Literals.NOUN;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getNoun()
{
return noun;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setNoun(String newNoun)
{
String oldNoun = noun;
noun = newNoun;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, AgreementPackage.NOUN__NOUN, oldNoun, noun));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType)
{
switch (featureID)
{
case AgreementPackage.NOUN__NOUN:
return getNoun();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue)
{
switch (featureID)
{
case AgreementPackage.NOUN__NOUN:
setNoun((String)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID)
{
switch (featureID)
{
case AgreementPackage.NOUN__NOUN:
setNoun(NOUN_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID)
{
switch (featureID)
{
case AgreementPackage.NOUN__NOUN:
return NOUN_EDEFAULT == null ? noun != null : !NOUN_EDEFAULT.equals(noun);
}
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(" (noun: ");
result.append(noun);
result.append(')');
return result.toString();
}
} //NounImpl