blob: 52f695d22f7cb0c98561dadae14c8347a888cf9a [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
****************************************************************************/
package org.eclipse.gmf.runtime.notation.impl;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.gmf.runtime.notation.DoubleValueStyle;
import org.eclipse.gmf.runtime.notation.NotationPackage;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Double Value Style</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.gmf.runtime.notation.impl.DoubleValueStyleImpl#getDoubleValue <em>Double Value</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class DoubleValueStyleImpl extends NamedStyleImpl implements DoubleValueStyle {
/**
* The default value of the '{@link #getDoubleValue() <em>Double Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getDoubleValue()
* @generated
* @ordered
*/
protected static final double DOUBLE_VALUE_EDEFAULT = 0.0;
/**
* The cached value of the '{@link #getDoubleValue() <em>Double Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getDoubleValue()
* @generated
* @ordered
*/
protected double doubleValue = DOUBLE_VALUE_EDEFAULT;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected DoubleValueStyleImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EClass eStaticClass() {
return NotationPackage.Literals.DOUBLE_VALUE_STYLE;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public double getDoubleValue() {
return doubleValue;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setDoubleValue(double newDoubleValue) {
double oldDoubleValue = doubleValue;
doubleValue = newDoubleValue;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, NotationPackage.DOUBLE_VALUE_STYLE__DOUBLE_VALUE, oldDoubleValue, doubleValue));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case NotationPackage.DOUBLE_VALUE_STYLE__NAME:
return getName();
case NotationPackage.DOUBLE_VALUE_STYLE__DOUBLE_VALUE:
return new Double(getDoubleValue());
}
return eDynamicGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case NotationPackage.DOUBLE_VALUE_STYLE__NAME:
setName((String)newValue);
return;
case NotationPackage.DOUBLE_VALUE_STYLE__DOUBLE_VALUE:
setDoubleValue(((Double)newValue).doubleValue());
return;
}
eDynamicSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void eUnset(int featureID) {
switch (featureID) {
case NotationPackage.DOUBLE_VALUE_STYLE__NAME:
setName(NAME_EDEFAULT);
return;
case NotationPackage.DOUBLE_VALUE_STYLE__DOUBLE_VALUE:
setDoubleValue(DOUBLE_VALUE_EDEFAULT);
return;
}
eDynamicUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean eIsSet(int featureID) {
switch (featureID) {
case NotationPackage.DOUBLE_VALUE_STYLE__NAME:
return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
case NotationPackage.DOUBLE_VALUE_STYLE__DOUBLE_VALUE:
return doubleValue != DOUBLE_VALUE_EDEFAULT;
}
return eDynamicIsSet(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String toString() {
if (eIsProxy()) return super.toString();
StringBuffer result = new StringBuffer(super.toString());
result.append(" (doubleValue: "); //$NON-NLS-1$
result.append(doubleValue);
result.append(')');
return result.toString();
}
} //DoubleValueStyleImpl