org.openxma.dsl.dom.model.impl.BooleanLiteralValueImpl Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model.impl;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.openxma.dsl.dom.DomPackage;
import org.openxma.dsl.dom.model.BooleanLiteralValue;
/**
*
* An implementation of the model object 'Boolean Literal Value'.
*
*
* The following features are implemented:
*
* - {@link org.openxma.dsl.dom.model.impl.BooleanLiteralValueImpl#isIsTrue Is True}
*
*
*
* @generated
*/
public class BooleanLiteralValueImpl extends LiteralValueImpl implements BooleanLiteralValue {
/**
* The default value of the '{@link #isIsTrue() Is True}' attribute.
*
*
* @see #isIsTrue()
* @generated
* @ordered
*/
protected static final boolean IS_TRUE_EDEFAULT = false;
/**
* The cached value of the '{@link #isIsTrue() Is True}' attribute.
*
*
* @see #isIsTrue()
* @generated
* @ordered
*/
protected boolean isTrue = IS_TRUE_EDEFAULT;
/**
*
*
* @generated
*/
protected BooleanLiteralValueImpl() {
super();
}
/**
*
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return DomPackage.Literals.BOOLEAN_LITERAL_VALUE;
}
/**
*
*
* @generated
*/
public boolean isIsTrue() {
return isTrue;
}
/**
*
*
* @generated
*/
public void setIsTrue(boolean newIsTrue) {
boolean oldIsTrue = isTrue;
isTrue = newIsTrue;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, DomPackage.BOOLEAN_LITERAL_VALUE__IS_TRUE, oldIsTrue, isTrue));
}
/**
*
*
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case DomPackage.BOOLEAN_LITERAL_VALUE__IS_TRUE:
return isIsTrue();
}
return super.eGet(featureID, resolve, coreType);
}
/**
*
*
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case DomPackage.BOOLEAN_LITERAL_VALUE__IS_TRUE:
setIsTrue((Boolean)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
*
*
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case DomPackage.BOOLEAN_LITERAL_VALUE__IS_TRUE:
setIsTrue(IS_TRUE_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
*
*
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case DomPackage.BOOLEAN_LITERAL_VALUE__IS_TRUE:
return isTrue != IS_TRUE_EDEFAULT;
}
return super.eIsSet(featureID);
}
/**
*
*
* @generated
*/
@Override
public String toString() {
if (eIsProxy()) return super.toString();
StringBuffer result = new StringBuffer(super.toString());
result.append(" (isTrue: ");
result.append(isTrue);
result.append(')');
return result.toString();
}
} //BooleanLiteralValueImpl