blob: 15d8f5a557b0ee6a3e9acfd75c0979f625533218 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2018 IBM Corporation, Zeligsoft Inc., and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - Initial API and implementation
* Zeligsoft - Bugs 248869, 207365
*******************************************************************************/
package org.eclipse.ocl.ecore.impl;
import java.util.Map;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.common.util.DiagnosticChain;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EClassifier;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.ocl.ecore.CollectionRange;
import org.eclipse.ocl.ecore.EcorePackage;
import org.eclipse.ocl.expressions.ExpressionsPackage;
import org.eclipse.ocl.expressions.OCLExpression;
import org.eclipse.ocl.expressions.operations.CollectionRangeOperations;
import org.eclipse.ocl.utilities.Visitor;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Collection Range</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.ocl.ecore.impl.CollectionRangeImpl#getFirst <em>First</em>}</li>
* <li>{@link org.eclipse.ocl.ecore.impl.CollectionRangeImpl#getLast <em>Last</em>}</li>
* </ul>
*
* @generated
*/
public class CollectionRangeImpl
extends CollectionLiteralPartImpl
implements CollectionRange {
/**
* The cached value of the '{@link #getFirst() <em>First</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getFirst()
* @generated
* @ordered
*/
protected OCLExpression<EClassifier> first;
/**
* The cached value of the '{@link #getLast() <em>Last</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getLast()
* @generated
* @ordered
*/
protected OCLExpression<EClassifier> last;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected CollectionRangeImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return EcorePackage.Literals.COLLECTION_RANGE;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public OCLExpression<EClassifier> getFirst() {
return first;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetFirst(OCLExpression<EClassifier> newFirst,
NotificationChain msgs) {
OCLExpression<EClassifier> oldFirst = first;
first = newFirst;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this,
Notification.SET, EcorePackage.COLLECTION_RANGE__FIRST,
oldFirst, newFirst);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setFirst(OCLExpression<EClassifier> newFirst) {
if (newFirst != first) {
NotificationChain msgs = null;
if (first != null)
msgs = ((InternalEObject) first).eInverseRemove(this,
EOPPOSITE_FEATURE_BASE
- EcorePackage.COLLECTION_RANGE__FIRST,
null, msgs);
if (newFirst != null)
msgs = ((InternalEObject) newFirst).eInverseAdd(this,
EOPPOSITE_FEATURE_BASE
- EcorePackage.COLLECTION_RANGE__FIRST,
null, msgs);
msgs = basicSetFirst(newFirst, msgs);
if (msgs != null)
msgs.dispatch();
} else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET,
EcorePackage.COLLECTION_RANGE__FIRST, newFirst, newFirst));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public OCLExpression<EClassifier> getLast() {
return last;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetLast(OCLExpression<EClassifier> newLast,
NotificationChain msgs) {
OCLExpression<EClassifier> oldLast = last;
last = newLast;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this,
Notification.SET, EcorePackage.COLLECTION_RANGE__LAST, oldLast,
newLast);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setLast(OCLExpression<EClassifier> newLast) {
if (newLast != last) {
NotificationChain msgs = null;
if (last != null)
msgs = ((InternalEObject) last).eInverseRemove(this,
EOPPOSITE_FEATURE_BASE
- EcorePackage.COLLECTION_RANGE__LAST,
null, msgs);
if (newLast != null)
msgs = ((InternalEObject) newLast).eInverseAdd(this,
EOPPOSITE_FEATURE_BASE
- EcorePackage.COLLECTION_RANGE__LAST,
null, msgs);
msgs = basicSetLast(newLast, msgs);
if (msgs != null)
msgs.dispatch();
} else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET,
EcorePackage.COLLECTION_RANGE__LAST, newLast, newLast));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
public boolean checkRangeType(DiagnosticChain diagnostics,
Map<Object, Object> context) {
return CollectionRangeOperations.checkRangeType(this, diagnostics,
context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd,
int featureID, NotificationChain msgs) {
switch (featureID) {
case EcorePackage.COLLECTION_RANGE__FIRST :
return basicSetFirst(null, msgs);
case EcorePackage.COLLECTION_RANGE__LAST :
return basicSetLast(null, 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 EcorePackage.COLLECTION_RANGE__FIRST :
return getFirst();
case EcorePackage.COLLECTION_RANGE__LAST :
return getLast();
}
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 EcorePackage.COLLECTION_RANGE__FIRST :
setFirst((OCLExpression<EClassifier>) newValue);
return;
case EcorePackage.COLLECTION_RANGE__LAST :
setLast((OCLExpression<EClassifier>) newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case EcorePackage.COLLECTION_RANGE__FIRST :
setFirst((OCLExpression<EClassifier>) null);
return;
case EcorePackage.COLLECTION_RANGE__LAST :
setLast((OCLExpression<EClassifier>) null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case EcorePackage.COLLECTION_RANGE__FIRST :
return first != null;
case EcorePackage.COLLECTION_RANGE__LAST :
return last != null;
}
return super.eIsSet(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public int eBaseStructuralFeatureID(int derivedFeatureID,
Class<?> baseClass) {
if (baseClass == org.eclipse.ocl.expressions.CollectionRange.class) {
switch (derivedFeatureID) {
case EcorePackage.COLLECTION_RANGE__FIRST :
return ExpressionsPackage.COLLECTION_RANGE__FIRST;
case EcorePackage.COLLECTION_RANGE__LAST :
return ExpressionsPackage.COLLECTION_RANGE__LAST;
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 == org.eclipse.ocl.expressions.CollectionRange.class) {
switch (baseFeatureID) {
case ExpressionsPackage.COLLECTION_RANGE__FIRST :
return EcorePackage.COLLECTION_RANGE__FIRST;
case ExpressionsPackage.COLLECTION_RANGE__LAST :
return EcorePackage.COLLECTION_RANGE__LAST;
default :
return -1;
}
}
return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass);
}
/**
* @generated NOT
*/
@Override
@SuppressWarnings("unchecked")
public <T, U extends Visitor<T, ?, ?, ?, ?, ?, ?, ?, ?, ?>> T accept(U v) {
return ((Visitor<T, EClassifier, ?, ?, ?, ?, ?, ?, ?, ?>) v)
.visitCollectionRange(this);
}
} //CollectionRangeImpl