blob: 00c13d7737a410ca75d2f5efd755fb43e5608f50 [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.EDataType;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.gmf.runtime.notation.DataTypeStyle;
import org.eclipse.gmf.runtime.notation.NotationPackage;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Data Type Style</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.gmf.runtime.notation.impl.DataTypeStyleImpl#getInstanceType <em>Instance Type</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class DataTypeStyleImpl extends NamedStyleImpl implements DataTypeStyle {
/**
* The cached value of the '{@link #getInstanceType() <em>Instance Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getInstanceType()
* @generated
* @ordered
*/
protected EDataType instanceType;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected DataTypeStyleImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EClass eStaticClass() {
return NotationPackage.Literals.DATA_TYPE_STYLE;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EDataType getInstanceType() {
if (instanceType != null && instanceType.eIsProxy()) {
InternalEObject oldInstanceType = (InternalEObject)instanceType;
instanceType = (EDataType)eResolveProxy(oldInstanceType);
if (instanceType != oldInstanceType) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, NotationPackage.DATA_TYPE_STYLE__INSTANCE_TYPE, oldInstanceType, instanceType));
}
}
return instanceType;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EDataType basicGetInstanceType() {
return instanceType;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setInstanceType(EDataType newInstanceType) {
EDataType oldInstanceType = instanceType;
instanceType = newInstanceType;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, NotationPackage.DATA_TYPE_STYLE__INSTANCE_TYPE, oldInstanceType, instanceType));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
public String getStringFromObject(Object objectValue) {
if (getInstanceType() == null && objectValue instanceof String)
return (String)objectValue;
return EcoreUtil.convertToString(getInstanceType(), objectValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
public Object getObjectFromString(String stringValue) {
if (getInstanceType() == null)
return stringValue;
return EcoreUtil.createFromString(getInstanceType(), stringValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case NotationPackage.DATA_TYPE_STYLE__NAME:
return getName();
case NotationPackage.DATA_TYPE_STYLE__INSTANCE_TYPE:
if (resolve) return getInstanceType();
return basicGetInstanceType();
}
return eDynamicGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case NotationPackage.DATA_TYPE_STYLE__NAME:
setName((String)newValue);
return;
case NotationPackage.DATA_TYPE_STYLE__INSTANCE_TYPE:
setInstanceType((EDataType)newValue);
return;
}
eDynamicSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void eUnset(int featureID) {
switch (featureID) {
case NotationPackage.DATA_TYPE_STYLE__NAME:
setName(NAME_EDEFAULT);
return;
case NotationPackage.DATA_TYPE_STYLE__INSTANCE_TYPE:
setInstanceType((EDataType)null);
return;
}
eDynamicUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean eIsSet(int featureID) {
switch (featureID) {
case NotationPackage.DATA_TYPE_STYLE__NAME:
return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
case NotationPackage.DATA_TYPE_STYLE__INSTANCE_TYPE:
return instanceType != null;
}
return eDynamicIsSet(featureID);
}
} //DataTypeStyleImpl