blob: b8263fd64256f4b5ee0e98938bcfece27853ec8b [file] [log] [blame]
/*
* Copyright (c) 2005, 2006 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 - initial API and implementation
*
* $Id: MultiplicityElementImpl.java,v 1.22 2006/05/24 20:54:28 khussey Exp $
*/
package org.eclipse.uml2.uml.internal.impl;
import java.util.Collection;
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.common.util.EList;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.util.InternalEList;
import org.eclipse.uml2.common.util.CacheAdapter;
import org.eclipse.uml2.common.util.DerivedUnionEObjectEList;
import org.eclipse.uml2.uml.Element;
import org.eclipse.uml2.uml.MultiplicityElement;
import org.eclipse.uml2.uml.Type;
import org.eclipse.uml2.uml.UMLPackage;
import org.eclipse.uml2.uml.ValueSpecification;
import org.eclipse.uml2.uml.internal.operations.MultiplicityElementOperations;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Multiplicity Element</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.uml2.uml.internal.impl.MultiplicityElementImpl#getOwnedElements <em>Owned Element</em>}</li>
* <li>{@link org.eclipse.uml2.uml.internal.impl.MultiplicityElementImpl#isOrdered <em>Is Ordered</em>}</li>
* <li>{@link org.eclipse.uml2.uml.internal.impl.MultiplicityElementImpl#isUnique <em>Is Unique</em>}</li>
* <li>{@link org.eclipse.uml2.uml.internal.impl.MultiplicityElementImpl#getUpper <em>Upper</em>}</li>
* <li>{@link org.eclipse.uml2.uml.internal.impl.MultiplicityElementImpl#getLower <em>Lower</em>}</li>
* <li>{@link org.eclipse.uml2.uml.internal.impl.MultiplicityElementImpl#getUpperValue <em>Upper Value</em>}</li>
* <li>{@link org.eclipse.uml2.uml.internal.impl.MultiplicityElementImpl#getLowerValue <em>Lower Value</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public abstract class MultiplicityElementImpl
extends ElementImpl
implements MultiplicityElement {
/**
* The default value of the '{@link #isOrdered() <em>Is Ordered</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isOrdered()
* @generated
* @ordered
*/
protected static final boolean IS_ORDERED_EDEFAULT = false;
/**
* The flag representing the value of the '{@link #isOrdered() <em>Is Ordered</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isOrdered()
* @generated
* @ordered
*/
protected static final int IS_ORDERED_EFLAG = 1 << 8;
/**
* The default value of the '{@link #isUnique() <em>Is Unique</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isUnique()
* @generated
* @ordered
*/
protected static final boolean IS_UNIQUE_EDEFAULT = true;
/**
* The flag representing the value of the '{@link #isUnique() <em>Is Unique</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isUnique()
* @generated
* @ordered
*/
protected static final int IS_UNIQUE_EFLAG = 1 << 9;
/**
* The default value of the '{@link #getUpper() <em>Upper</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getUpper()
* @generated
* @ordered
*/
protected static final int UPPER_EDEFAULT = 1;
/**
* The default value of the '{@link #getLower() <em>Lower</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getLower()
* @generated
* @ordered
*/
protected static final int LOWER_EDEFAULT = 1;
/**
* The cached value of the '{@link #getUpperValue() <em>Upper Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getUpperValue()
* @generated
* @ordered
*/
protected ValueSpecification upperValue = null;
/**
* The cached value of the '{@link #getLowerValue() <em>Lower Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getLowerValue()
* @generated
* @ordered
*/
protected ValueSpecification lowerValue = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected MultiplicityElementImpl() {
super();
eFlags |= IS_UNIQUE_EFLAG;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EClass eStaticClass() {
return UMLPackage.Literals.MULTIPLICITY_ELEMENT;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList getOwnedElements() {
CacheAdapter cache = getCacheAdapter();
if (cache != null) {
Resource eResource = eResource();
EList ownedElements = (EList) cache.get(eResource, this,
UMLPackage.Literals.ELEMENT__OWNED_ELEMENT);
if (ownedElements == null) {
cache.put(eResource, this,
UMLPackage.Literals.ELEMENT__OWNED_ELEMENT,
ownedElements = new DerivedUnionEObjectEList(Element.class,
this, UMLPackage.MULTIPLICITY_ELEMENT__OWNED_ELEMENT,
OWNED_ELEMENT_ESUBSETS));
}
return ownedElements;
}
return new DerivedUnionEObjectEList(Element.class, this,
UMLPackage.MULTIPLICITY_ELEMENT__OWNED_ELEMENT,
OWNED_ELEMENT_ESUBSETS);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean isOrdered() {
return (eFlags & IS_ORDERED_EFLAG) != 0;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setIsOrdered(boolean newIsOrdered) {
boolean oldIsOrdered = (eFlags & IS_ORDERED_EFLAG) != 0;
if (newIsOrdered)
eFlags |= IS_ORDERED_EFLAG;
else
eFlags &= ~IS_ORDERED_EFLAG;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET,
UMLPackage.MULTIPLICITY_ELEMENT__IS_ORDERED, oldIsOrdered,
newIsOrdered));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean isUnique() {
return (eFlags & IS_UNIQUE_EFLAG) != 0;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setIsUnique(boolean newIsUnique) {
boolean oldIsUnique = (eFlags & IS_UNIQUE_EFLAG) != 0;
if (newIsUnique)
eFlags |= IS_UNIQUE_EFLAG;
else
eFlags &= ~IS_UNIQUE_EFLAG;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET,
UMLPackage.MULTIPLICITY_ELEMENT__IS_UNIQUE, oldIsUnique,
newIsUnique));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int getUpper() {
return MultiplicityElementOperations.getUpper(this);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setUpper(int newUpper) {
MultiplicityElementOperations.setUpper(this, newUpper);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int getLower() {
return MultiplicityElementOperations.getLower(this);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setLower(int newLower) {
MultiplicityElementOperations.setLower(this, newLower);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecification getUpperValue() {
if (upperValue != null && upperValue.eIsProxy()) {
InternalEObject oldUpperValue = (InternalEObject) upperValue;
upperValue = (ValueSpecification) eResolveProxy(oldUpperValue);
if (upperValue != oldUpperValue) {
InternalEObject newUpperValue = (InternalEObject) upperValue;
NotificationChain msgs = oldUpperValue.eInverseRemove(this,
EOPPOSITE_FEATURE_BASE
- UMLPackage.MULTIPLICITY_ELEMENT__UPPER_VALUE, null,
null);
if (newUpperValue.eInternalContainer() == null) {
msgs = newUpperValue.eInverseAdd(this,
EOPPOSITE_FEATURE_BASE
- UMLPackage.MULTIPLICITY_ELEMENT__UPPER_VALUE,
null, msgs);
}
if (msgs != null)
msgs.dispatch();
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE,
UMLPackage.MULTIPLICITY_ELEMENT__UPPER_VALUE,
oldUpperValue, upperValue));
}
}
return upperValue;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecification basicGetUpperValue() {
return upperValue;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetUpperValue(
ValueSpecification newUpperValue, NotificationChain msgs) {
ValueSpecification oldUpperValue = upperValue;
upperValue = newUpperValue;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this,
Notification.SET, UMLPackage.MULTIPLICITY_ELEMENT__UPPER_VALUE,
oldUpperValue, newUpperValue);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setUpperValue(ValueSpecification newUpperValue) {
if (newUpperValue != upperValue) {
NotificationChain msgs = null;
if (upperValue != null)
msgs = ((InternalEObject) upperValue).eInverseRemove(this,
EOPPOSITE_FEATURE_BASE
- UMLPackage.MULTIPLICITY_ELEMENT__UPPER_VALUE, null,
msgs);
if (newUpperValue != null)
msgs = ((InternalEObject) newUpperValue).eInverseAdd(this,
EOPPOSITE_FEATURE_BASE
- UMLPackage.MULTIPLICITY_ELEMENT__UPPER_VALUE, null,
msgs);
msgs = basicSetUpperValue(newUpperValue, msgs);
if (msgs != null)
msgs.dispatch();
} else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET,
UMLPackage.MULTIPLICITY_ELEMENT__UPPER_VALUE, newUpperValue,
newUpperValue));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecification createUpperValue(String name, Type type,
EClass eClass) {
ValueSpecification newUpperValue = (ValueSpecification) create(eClass);
setUpperValue(newUpperValue);
if (name != null)
newUpperValue.setName(name);
if (type != null)
newUpperValue.setType(type);
return newUpperValue;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecification getLowerValue() {
if (lowerValue != null && lowerValue.eIsProxy()) {
InternalEObject oldLowerValue = (InternalEObject) lowerValue;
lowerValue = (ValueSpecification) eResolveProxy(oldLowerValue);
if (lowerValue != oldLowerValue) {
InternalEObject newLowerValue = (InternalEObject) lowerValue;
NotificationChain msgs = oldLowerValue.eInverseRemove(this,
EOPPOSITE_FEATURE_BASE
- UMLPackage.MULTIPLICITY_ELEMENT__LOWER_VALUE, null,
null);
if (newLowerValue.eInternalContainer() == null) {
msgs = newLowerValue.eInverseAdd(this,
EOPPOSITE_FEATURE_BASE
- UMLPackage.MULTIPLICITY_ELEMENT__LOWER_VALUE,
null, msgs);
}
if (msgs != null)
msgs.dispatch();
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE,
UMLPackage.MULTIPLICITY_ELEMENT__LOWER_VALUE,
oldLowerValue, lowerValue));
}
}
return lowerValue;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecification basicGetLowerValue() {
return lowerValue;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetLowerValue(
ValueSpecification newLowerValue, NotificationChain msgs) {
ValueSpecification oldLowerValue = lowerValue;
lowerValue = newLowerValue;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this,
Notification.SET, UMLPackage.MULTIPLICITY_ELEMENT__LOWER_VALUE,
oldLowerValue, newLowerValue);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setLowerValue(ValueSpecification newLowerValue) {
if (newLowerValue != lowerValue) {
NotificationChain msgs = null;
if (lowerValue != null)
msgs = ((InternalEObject) lowerValue).eInverseRemove(this,
EOPPOSITE_FEATURE_BASE
- UMLPackage.MULTIPLICITY_ELEMENT__LOWER_VALUE, null,
msgs);
if (newLowerValue != null)
msgs = ((InternalEObject) newLowerValue).eInverseAdd(this,
EOPPOSITE_FEATURE_BASE
- UMLPackage.MULTIPLICITY_ELEMENT__LOWER_VALUE, null,
msgs);
msgs = basicSetLowerValue(newLowerValue, msgs);
if (msgs != null)
msgs.dispatch();
} else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET,
UMLPackage.MULTIPLICITY_ELEMENT__LOWER_VALUE, newLowerValue,
newLowerValue));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecification createLowerValue(String name, Type type,
EClass eClass) {
ValueSpecification newLowerValue = (ValueSpecification) create(eClass);
setLowerValue(newLowerValue);
if (name != null)
newLowerValue.setName(name);
if (type != null)
newLowerValue.setType(type);
return newLowerValue;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateUpperGt0(DiagnosticChain diagnostics, Map context) {
return MultiplicityElementOperations.validateUpperGt0(this,
diagnostics, context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateLowerGe0(DiagnosticChain diagnostics, Map context) {
return MultiplicityElementOperations.validateLowerGe0(this,
diagnostics, context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateUpperGeLower(DiagnosticChain diagnostics, Map context) {
return MultiplicityElementOperations.validateUpperGeLower(this,
diagnostics, context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateValueSpecificationNoSideEffects(
DiagnosticChain diagnostics, Map context) {
return MultiplicityElementOperations
.validateValueSpecificationNoSideEffects(this, diagnostics, context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateValueSpecificationConstant(
DiagnosticChain diagnostics, Map context) {
return MultiplicityElementOperations
.validateValueSpecificationConstant(this, diagnostics, context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean isMultivalued() {
return MultiplicityElementOperations.isMultivalued(this);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean includesCardinality(int C) {
return MultiplicityElementOperations.includesCardinality(this, C);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean includesMultiplicity(MultiplicityElement M) {
return MultiplicityElementOperations.includesMultiplicity(this, M);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int lowerBound() {
return MultiplicityElementOperations.lowerBound(this);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int upperBound() {
return MultiplicityElementOperations.upperBound(this);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean compatibleWith(MultiplicityElement other) {
return MultiplicityElementOperations.compatibleWith(this, other);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean is(int lowerbound, int upperbound) {
return MultiplicityElementOperations.is(this, lowerbound, upperbound);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain eInverseRemove(InternalEObject otherEnd,
int featureID, NotificationChain msgs) {
switch (featureID) {
case UMLPackage.MULTIPLICITY_ELEMENT__EANNOTATIONS :
return ((InternalEList) getEAnnotations()).basicRemove(
otherEnd, msgs);
case UMLPackage.MULTIPLICITY_ELEMENT__OWNED_COMMENT :
return ((InternalEList) getOwnedComments()).basicRemove(
otherEnd, msgs);
case UMLPackage.MULTIPLICITY_ELEMENT__UPPER_VALUE :
return basicSetUpperValue(null, msgs);
case UMLPackage.MULTIPLICITY_ELEMENT__LOWER_VALUE :
return basicSetLowerValue(null, msgs);
}
return eDynamicInverseRemove(otherEnd, featureID, msgs);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case UMLPackage.MULTIPLICITY_ELEMENT__EANNOTATIONS :
return getEAnnotations();
case UMLPackage.MULTIPLICITY_ELEMENT__OWNED_ELEMENT :
return getOwnedElements();
case UMLPackage.MULTIPLICITY_ELEMENT__OWNER :
if (resolve)
return getOwner();
return basicGetOwner();
case UMLPackage.MULTIPLICITY_ELEMENT__OWNED_COMMENT :
return getOwnedComments();
case UMLPackage.MULTIPLICITY_ELEMENT__IS_ORDERED :
return isOrdered()
? Boolean.TRUE
: Boolean.FALSE;
case UMLPackage.MULTIPLICITY_ELEMENT__IS_UNIQUE :
return isUnique()
? Boolean.TRUE
: Boolean.FALSE;
case UMLPackage.MULTIPLICITY_ELEMENT__UPPER :
return new Integer(getUpper());
case UMLPackage.MULTIPLICITY_ELEMENT__LOWER :
return new Integer(getLower());
case UMLPackage.MULTIPLICITY_ELEMENT__UPPER_VALUE :
if (resolve)
return getUpperValue();
return basicGetUpperValue();
case UMLPackage.MULTIPLICITY_ELEMENT__LOWER_VALUE :
if (resolve)
return getLowerValue();
return basicGetLowerValue();
}
return eDynamicGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case UMLPackage.MULTIPLICITY_ELEMENT__EANNOTATIONS :
getEAnnotations().clear();
getEAnnotations().addAll((Collection) newValue);
return;
case UMLPackage.MULTIPLICITY_ELEMENT__OWNED_COMMENT :
getOwnedComments().clear();
getOwnedComments().addAll((Collection) newValue);
return;
case UMLPackage.MULTIPLICITY_ELEMENT__IS_ORDERED :
setIsOrdered(((Boolean) newValue).booleanValue());
return;
case UMLPackage.MULTIPLICITY_ELEMENT__IS_UNIQUE :
setIsUnique(((Boolean) newValue).booleanValue());
return;
case UMLPackage.MULTIPLICITY_ELEMENT__UPPER :
setUpper(((Integer) newValue).intValue());
return;
case UMLPackage.MULTIPLICITY_ELEMENT__LOWER :
setLower(((Integer) newValue).intValue());
return;
case UMLPackage.MULTIPLICITY_ELEMENT__UPPER_VALUE :
setUpperValue((ValueSpecification) newValue);
return;
case UMLPackage.MULTIPLICITY_ELEMENT__LOWER_VALUE :
setLowerValue((ValueSpecification) newValue);
return;
}
eDynamicSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void eUnset(int featureID) {
switch (featureID) {
case UMLPackage.MULTIPLICITY_ELEMENT__EANNOTATIONS :
getEAnnotations().clear();
return;
case UMLPackage.MULTIPLICITY_ELEMENT__OWNED_COMMENT :
getOwnedComments().clear();
return;
case UMLPackage.MULTIPLICITY_ELEMENT__IS_ORDERED :
setIsOrdered(IS_ORDERED_EDEFAULT);
return;
case UMLPackage.MULTIPLICITY_ELEMENT__IS_UNIQUE :
setIsUnique(IS_UNIQUE_EDEFAULT);
return;
case UMLPackage.MULTIPLICITY_ELEMENT__UPPER :
setUpper(UPPER_EDEFAULT);
return;
case UMLPackage.MULTIPLICITY_ELEMENT__LOWER :
setLower(LOWER_EDEFAULT);
return;
case UMLPackage.MULTIPLICITY_ELEMENT__UPPER_VALUE :
setUpperValue((ValueSpecification) null);
return;
case UMLPackage.MULTIPLICITY_ELEMENT__LOWER_VALUE :
setLowerValue((ValueSpecification) null);
return;
}
eDynamicUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean eIsSet(int featureID) {
switch (featureID) {
case UMLPackage.MULTIPLICITY_ELEMENT__EANNOTATIONS :
return eAnnotations != null && !eAnnotations.isEmpty();
case UMLPackage.MULTIPLICITY_ELEMENT__OWNED_ELEMENT :
return isSetOwnedElements();
case UMLPackage.MULTIPLICITY_ELEMENT__OWNER :
return isSetOwner();
case UMLPackage.MULTIPLICITY_ELEMENT__OWNED_COMMENT :
return ownedComments != null && !ownedComments.isEmpty();
case UMLPackage.MULTIPLICITY_ELEMENT__IS_ORDERED :
return ((eFlags & IS_ORDERED_EFLAG) != 0) != IS_ORDERED_EDEFAULT;
case UMLPackage.MULTIPLICITY_ELEMENT__IS_UNIQUE :
return ((eFlags & IS_UNIQUE_EFLAG) != 0) != IS_UNIQUE_EDEFAULT;
case UMLPackage.MULTIPLICITY_ELEMENT__UPPER :
return getUpper() != UPPER_EDEFAULT;
case UMLPackage.MULTIPLICITY_ELEMENT__LOWER :
return getLower() != LOWER_EDEFAULT;
case UMLPackage.MULTIPLICITY_ELEMENT__UPPER_VALUE :
return upperValue != null;
case UMLPackage.MULTIPLICITY_ELEMENT__LOWER_VALUE :
return lowerValue != null;
}
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(" (isOrdered: "); //$NON-NLS-1$
result.append((eFlags & IS_ORDERED_EFLAG) != 0);
result.append(", isUnique: "); //$NON-NLS-1$
result.append((eFlags & IS_UNIQUE_EFLAG) != 0);
result.append(')');
return result.toString();
}
/**
* The array of subset feature identifiers for the '{@link #getOwnedElements() <em>Owned Element</em>}' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getOwnedElements()
* @generated
* @ordered
*/
protected static final int[] OWNED_ELEMENT_ESUBSETS = new int[]{
UMLPackage.MULTIPLICITY_ELEMENT__OWNED_COMMENT,
UMLPackage.MULTIPLICITY_ELEMENT__UPPER_VALUE,
UMLPackage.MULTIPLICITY_ELEMENT__LOWER_VALUE};
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean isSetOwnedElements() {
return super.isSetOwnedElements()
|| eIsSet(UMLPackage.MULTIPLICITY_ELEMENT__UPPER_VALUE)
|| eIsSet(UMLPackage.MULTIPLICITY_ELEMENT__LOWER_VALUE);
}
} //MultiplicityElementImpl