/******************************************************************************* * Copyright (c) 2010, 2015 Willink Transformations 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: * E.D.Willink - Initial API and implementation *******************************************************************************/ package org.eclipse.ocl.pivot.internal; import java.util.Collection; import java.util.List; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.util.EDataTypeUniqueEList; import org.eclipse.jdt.annotation.NonNull; import org.eclipse.ocl.pivot.Comment; import org.eclipse.ocl.pivot.Detail; import org.eclipse.ocl.pivot.Element; import org.eclipse.ocl.pivot.ElementExtension; import org.eclipse.ocl.pivot.PivotPackage; import org.eclipse.ocl.pivot.util.Visitor; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Detail</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.eclipse.ocl.pivot.internal.DetailImpl#getValues <em>Values</em>}</li> * </ul> * * @generated */ public class DetailImpl extends NamedElementImpl implements Detail { /** * The cached value of the '{@link #getValues() <em>Values</em>}' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getValues() * @generated * @ordered */ protected EList<String> values; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected DetailImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return PivotPackage.Literals.DETAIL; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("null") @Override public @NonNull List<String> getValues() { if (values == null) { values = new EDataTypeUniqueEList<String>(String.class, this, PivotPackage.DETAIL__VALUES); } return values; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case PivotPackage.DETAIL__ANNOTATING_COMMENTS: return getAnnotatingComments(); case PivotPackage.DETAIL__OWNED_ANNOTATIONS: return getOwnedAnnotations(); case PivotPackage.DETAIL__OWNED_COMMENTS: return getOwnedComments(); case PivotPackage.DETAIL__OWNED_EXTENSIONS: return getOwnedExtensions(); case PivotPackage.DETAIL__NAME: return getName(); case PivotPackage.DETAIL__VALUES: return getValues(); } return eDynamicGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case PivotPackage.DETAIL__ANNOTATING_COMMENTS: getAnnotatingComments().clear(); getAnnotatingComments().addAll((Collection<? extends Comment>)newValue); return; case PivotPackage.DETAIL__OWNED_ANNOTATIONS: getOwnedAnnotations().clear(); getOwnedAnnotations().addAll((Collection<? extends Element>)newValue); return; case PivotPackage.DETAIL__OWNED_COMMENTS: getOwnedComments().clear(); getOwnedComments().addAll((Collection<? extends Comment>)newValue); return; case PivotPackage.DETAIL__OWNED_EXTENSIONS: getOwnedExtensions().clear(); getOwnedExtensions().addAll((Collection<? extends ElementExtension>)newValue); return; case PivotPackage.DETAIL__NAME: setName((String)newValue); return; case PivotPackage.DETAIL__VALUES: getValues().clear(); getValues().addAll((Collection<? extends String>)newValue); return; } eDynamicSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case PivotPackage.DETAIL__ANNOTATING_COMMENTS: getAnnotatingComments().clear(); return; case PivotPackage.DETAIL__OWNED_ANNOTATIONS: getOwnedAnnotations().clear(); return; case PivotPackage.DETAIL__OWNED_COMMENTS: getOwnedComments().clear(); return; case PivotPackage.DETAIL__OWNED_EXTENSIONS: getOwnedExtensions().clear(); return; case PivotPackage.DETAIL__NAME: setName(NAME_EDEFAULT); return; case PivotPackage.DETAIL__VALUES: getValues().clear(); return; } eDynamicUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case PivotPackage.DETAIL__ANNOTATING_COMMENTS: return annotatingComments != null && !annotatingComments.isEmpty(); case PivotPackage.DETAIL__OWNED_ANNOTATIONS: return ownedAnnotations != null && !ownedAnnotations.isEmpty(); case PivotPackage.DETAIL__OWNED_COMMENTS: return ownedComments != null && !ownedComments.isEmpty(); case PivotPackage.DETAIL__OWNED_EXTENSIONS: return ownedExtensions != null && !ownedExtensions.isEmpty(); case PivotPackage.DETAIL__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); case PivotPackage.DETAIL__VALUES: return values != null && !values.isEmpty(); } return eDynamicIsSet(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated NOT */ @Override public String toString() { return super.toString(); } @Override public <R> R accept(@NonNull Visitor<R> visitor) { return visitor.visitDetail(this); } } //DetailImpl