/** * <copyright> * </copyright> * * $Id$ */ package com.emf4sw.owl.impl; import java.util.Collection; import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; import com.emf4sw.owl.AnnotatedElement; import com.emf4sw.owl.Annotation; import com.emf4sw.owl.AnnotationProperty; import com.emf4sw.owl.DataRange; import com.emf4sw.owl.OWLDatatype; import com.emf4sw.owl.OWLPackage; import com.emf4sw.rdf.impl.DatatypeImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Datatype</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link com.emf4sw.owl.impl.OWLDatatypeImpl#getAnnotations <em>Annotations</em>}</li> * </ul> * </p> * * @generated */ public class OWLDatatypeImpl extends DatatypeImpl implements OWLDatatype { /** * The cached value of the '{@link #getAnnotations() <em>Annotations</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getAnnotations() * @generated * @ordered */ protected EList<Annotation> annotations; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected OWLDatatypeImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return OWLPackage.Literals.OWL_DATATYPE; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<Annotation> getAnnotations() { if (annotations == null) { annotations = new EObjectContainmentEList<Annotation>(Annotation.class, this, OWLPackage.OWL_DATATYPE__ANNOTATIONS); } return annotations; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void addAnnotation(AnnotationProperty property, Object value) { // TODO: implement this method // Ensure that you remove @generated or mark it @generated NOT throw new UnsupportedOperationException(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case OWLPackage.OWL_DATATYPE__ANNOTATIONS: return ((InternalEList<?>)getAnnotations()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case OWLPackage.OWL_DATATYPE__ANNOTATIONS: return getAnnotations(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case OWLPackage.OWL_DATATYPE__ANNOTATIONS: getAnnotations().clear(); getAnnotations().addAll((Collection<? extends Annotation>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case OWLPackage.OWL_DATATYPE__ANNOTATIONS: getAnnotations().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case OWLPackage.OWL_DATATYPE__ANNOTATIONS: return annotations != null && !annotations.isEmpty(); } return super.eIsSet(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public int eBaseStructuralFeatureID(int derivedFeatureID, Class<?> baseClass) { if (baseClass == AnnotatedElement.class) { switch (derivedFeatureID) { case OWLPackage.OWL_DATATYPE__ANNOTATIONS: return OWLPackage.ANNOTATED_ELEMENT__ANNOTATIONS; default: return -1; } } if (baseClass == DataRange.class) { switch (derivedFeatureID) { default: return -1; } } return super.eBaseStructuralFeatureID(derivedFeatureID, baseClass); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public int eDerivedStructuralFeatureID(int baseFeatureID, Class<?> baseClass) { if (baseClass == AnnotatedElement.class) { switch (baseFeatureID) { case OWLPackage.ANNOTATED_ELEMENT__ANNOTATIONS: return OWLPackage.OWL_DATATYPE__ANNOTATIONS; default: return -1; } } if (baseClass == DataRange.class) { switch (baseFeatureID) { default: return -1; } } return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass); } } //OWLDatatypeImpl