blob: 9c6c31ebcd4c2c53ea53f77e0b9f9b35884fcf0c [file] [log] [blame]
/*
* Copyright (c) 2003, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM - Initial API and implementation
*
* $Id: PinImpl.java,v 1.4 2004/06/02 05:02:25 khussey Exp $
*/
package org.eclipse.uml2.impl;
import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Set;
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.EStructuralFeature;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.util.EcoreEList;
import org.eclipse.emf.ecore.util.InternalEList;
import org.eclipse.uml2.Activity;
import org.eclipse.uml2.Behavior;
import org.eclipse.uml2.MultiplicityElement;
import org.eclipse.uml2.ObjectNodeOrderingKind;
import org.eclipse.uml2.Pin;
import org.eclipse.uml2.StringExpression;
import org.eclipse.uml2.StructuredActivityNode;
import org.eclipse.uml2.TemplateSignature;
import org.eclipse.uml2.Type;
import org.eclipse.uml2.UML2Package;
import org.eclipse.uml2.ValueSpecification;
import org.eclipse.uml2.VisibilityKind;
import org.eclipse.uml2.internal.operation.MultiplicityElementOperations;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Pin</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.uml2.impl.PinImpl#isOrdered <em>Is Ordered</em>}</li>
* <li>{@link org.eclipse.uml2.impl.PinImpl#isUnique <em>Is Unique</em>}</li>
* <li>{@link org.eclipse.uml2.impl.PinImpl#getLower <em>Lower</em>}</li>
* <li>{@link org.eclipse.uml2.impl.PinImpl#getUpper <em>Upper</em>}</li>
* <li>{@link org.eclipse.uml2.impl.PinImpl#getUpperValue <em>Upper Value</em>}</li>
* <li>{@link org.eclipse.uml2.impl.PinImpl#getLowerValue <em>Lower Value</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public abstract class PinImpl extends ObjectNodeImpl implements Pin {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final String copyright = "Copyright (c) 2003, 2004 IBM Corporation and others."; //$NON-NLS-1$
/**
* 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 cached value of the '{@link #isOrdered() <em>Is Ordered</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isOrdered()
* @generated
* @ordered
*/
protected boolean isOrdered = IS_ORDERED_EDEFAULT;
/**
* 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 cached value of the '{@link #isUnique() <em>Is Unique</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isUnique()
* @generated
* @ordered
*/
protected boolean isUnique = IS_UNIQUE_EDEFAULT;
/**
* 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 PinImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EClass eStaticClass() {
return UML2Package.eINSTANCE.getPin();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean isOrdered() {
return isOrdered;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setIsOrdered(boolean newIsOrdered) {
boolean oldIsOrdered = isOrdered;
isOrdered = newIsOrdered;
if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.SET, UML2Package.PIN__IS_ORDERED, oldIsOrdered, isOrdered));
}
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean isUnique() {
return isUnique;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setIsUnique(boolean newIsUnique) {
boolean oldIsUnique = isUnique;
isUnique = newIsUnique;
if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.SET, UML2Package.PIN__IS_UNIQUE, oldIsUnique, isUnique));
}
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
public int getLower() {
return lower();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
public int getUpper() {
return upper();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecification getUpperValue() {
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, UML2Package.PIN__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 - UML2Package.PIN__UPPER_VALUE, null, msgs);
if (newUpperValue != null)
msgs = ((InternalEObject)newUpperValue).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - UML2Package.PIN__UPPER_VALUE, null, msgs);
msgs = basicSetUpperValue(newUpperValue, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, UML2Package.PIN__UPPER_VALUE, newUpperValue, newUpperValue));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecification createUpperValue(EClass eClass) {
ValueSpecification newUpperValue = (ValueSpecification) eClass.getEPackage().getEFactoryInstance().create(eClass);
if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, 0, UML2Package.PIN__UPPER_VALUE, null, newUpperValue));
}
setUpperValue(newUpperValue);
return newUpperValue;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecification getLowerValue() {
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, UML2Package.PIN__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 - UML2Package.PIN__LOWER_VALUE, null, msgs);
if (newLowerValue != null)
msgs = ((InternalEObject)newLowerValue).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - UML2Package.PIN__LOWER_VALUE, null, msgs);
msgs = basicSetLowerValue(newLowerValue, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, UML2Package.PIN__LOWER_VALUE, newLowerValue, newLowerValue));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecification createLowerValue(EClass eClass) {
ValueSpecification newLowerValue = (ValueSpecification) eClass.getEPackage().getEFactoryInstance().create(eClass);
if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, 0, UML2Package.PIN__LOWER_VALUE, null, newLowerValue));
}
setLowerValue(newLowerValue);
return newLowerValue;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int lowerBound() {
return org.eclipse.uml2.internal.operation.MultiplicityElementOperations.lowerBound(this);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int upperBound() {
return org.eclipse.uml2.internal.operation.MultiplicityElementOperations.upperBound(this);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean isMultivalued() {
return org.eclipse.uml2.internal.operation.MultiplicityElementOperations.isMultivalued(this);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean includesCardinality(int C) {
return org.eclipse.uml2.internal.operation.MultiplicityElementOperations.includesCardinality(this, C);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean includesMultiplicity(MultiplicityElement M) {
return org.eclipse.uml2.internal.operation.MultiplicityElementOperations.includesMultiplicity(this, M);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateUpperGt0(DiagnosticChain diagnostics, Map context) {
return org.eclipse.uml2.internal.operation.MultiplicityElementOperations.validateUpperGt0(this, diagnostics, context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateLowerGe0(DiagnosticChain diagnostics, Map context) {
return org.eclipse.uml2.internal.operation.MultiplicityElementOperations.validateLowerGe0(this, diagnostics, context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateUpperGeLower(DiagnosticChain diagnostics, Map context) {
return org.eclipse.uml2.internal.operation.MultiplicityElementOperations.validateUpperGeLower(this, diagnostics, context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateLowerEqLowerbound(DiagnosticChain diagnostics, Map context) {
return org.eclipse.uml2.internal.operation.MultiplicityElementOperations.validateLowerEqLowerbound(this, diagnostics, context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateUpperEqUpperbound(DiagnosticChain diagnostics, Map context) {
return org.eclipse.uml2.internal.operation.MultiplicityElementOperations.validateUpperEqUpperbound(this, diagnostics, context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int lower() {
return org.eclipse.uml2.internal.operation.MultiplicityElementOperations.lower(this);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int upper() {
return org.eclipse.uml2.internal.operation.MultiplicityElementOperations.upper(this);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList getOwnedElements() {
EList ownedElement = (EList) getCacheAdapter().get(this, UML2Package.eINSTANCE.getElement_OwnedElement());
if (null == ownedElement) {
Set union = new LinkedHashSet();
union.addAll(super.getOwnedElements());
if (null != getUpperValue()) {
union.add(getUpperValue());
}
if (null != getLowerValue()) {
union.add(getLowerValue());
}
ownedElement = new EcoreEList.UnmodifiableEList(this, UML2Package.eINSTANCE.getElement_OwnedElement(), union.size(), union.toArray());
getCacheAdapter().put(this, UML2Package.eINSTANCE.getElement_OwnedElement(), ownedElement);
}
return ownedElement;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, Class baseClass, NotificationChain msgs) {
if (featureID >= 0) {
switch (eDerivedStructuralFeatureID(featureID, baseClass)) {
case UML2Package.PIN__EANNOTATIONS:
return ((InternalEList)getEAnnotations()).basicAdd(otherEnd, msgs);
case UML2Package.PIN__TEMPLATE_BINDING:
return ((InternalEList)getTemplateBindings()).basicAdd(otherEnd, msgs);
case UML2Package.PIN__OWNED_TEMPLATE_SIGNATURE:
if (ownedTemplateSignature != null)
msgs = ((InternalEObject)ownedTemplateSignature).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - UML2Package.PIN__OWNED_TEMPLATE_SIGNATURE, null, msgs);
return basicSetOwnedTemplateSignature((TemplateSignature)otherEnd, msgs);
case UML2Package.PIN__CLIENT_DEPENDENCY:
return ((InternalEList)getClientDependencies()).basicAdd(otherEnd, msgs);
case UML2Package.PIN__OUTGOING:
return ((InternalEList)getOutgoings()).basicAdd(otherEnd, msgs);
case UML2Package.PIN__INCOMING:
return ((InternalEList)getIncomings()).basicAdd(otherEnd, msgs);
case UML2Package.PIN__ACTIVITY:
if (eContainer != null)
msgs = eBasicRemoveFromContainer(msgs);
return eBasicSetContainer(otherEnd, UML2Package.PIN__ACTIVITY, msgs);
case UML2Package.PIN__IN_STRUCTURED_NODE:
if (eContainer != null)
msgs = eBasicRemoveFromContainer(msgs);
return eBasicSetContainer(otherEnd, UML2Package.PIN__IN_STRUCTURED_NODE, msgs);
case UML2Package.PIN__IN_PARTITION:
return ((InternalEList)getInPartitions()).basicAdd(otherEnd, msgs);
case UML2Package.PIN__IN_INTERRUPTIBLE_REGION:
return ((InternalEList)getInInterruptibleRegions()).basicAdd(otherEnd, msgs);
default:
return eDynamicInverseAdd(otherEnd, featureID, baseClass, msgs);
}
}
if (eContainer != null)
msgs = eBasicRemoveFromContainer(msgs);
return eBasicSetContainer(otherEnd, featureID, msgs);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, Class baseClass, NotificationChain msgs) {
if (featureID >= 0) {
switch (eDerivedStructuralFeatureID(featureID, baseClass)) {
case UML2Package.PIN__EANNOTATIONS:
return ((InternalEList)getEAnnotations()).basicRemove(otherEnd, msgs);
case UML2Package.PIN__OWNED_COMMENT:
return ((InternalEList)getOwnedComments()).basicRemove(otherEnd, msgs);
case UML2Package.PIN__TEMPLATE_BINDING:
return ((InternalEList)getTemplateBindings()).basicRemove(otherEnd, msgs);
case UML2Package.PIN__OWNED_TEMPLATE_SIGNATURE:
return basicSetOwnedTemplateSignature(null, msgs);
case UML2Package.PIN__CLIENT_DEPENDENCY:
return ((InternalEList)getClientDependencies()).basicRemove(otherEnd, msgs);
case UML2Package.PIN__NAME_EXPRESSION:
return basicSetNameExpression(null, msgs);
case UML2Package.PIN__OUTGOING:
return ((InternalEList)getOutgoings()).basicRemove(otherEnd, msgs);
case UML2Package.PIN__INCOMING:
return ((InternalEList)getIncomings()).basicRemove(otherEnd, msgs);
case UML2Package.PIN__ACTIVITY:
return eBasicSetContainer(null, UML2Package.PIN__ACTIVITY, msgs);
case UML2Package.PIN__IN_STRUCTURED_NODE:
return eBasicSetContainer(null, UML2Package.PIN__IN_STRUCTURED_NODE, msgs);
case UML2Package.PIN__IN_PARTITION:
return ((InternalEList)getInPartitions()).basicRemove(otherEnd, msgs);
case UML2Package.PIN__IN_INTERRUPTIBLE_REGION:
return ((InternalEList)getInInterruptibleRegions()).basicRemove(otherEnd, msgs);
case UML2Package.PIN__UPPER_BOUND:
return basicSetUpperBound(null, msgs);
case UML2Package.PIN__UPPER_VALUE:
return basicSetUpperValue(null, msgs);
case UML2Package.PIN__LOWER_VALUE:
return basicSetLowerValue(null, msgs);
default:
return eDynamicInverseRemove(otherEnd, featureID, baseClass, msgs);
}
}
return eBasicSetContainer(null, featureID, msgs);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain eBasicRemoveFromContainer(NotificationChain msgs) {
if (eContainerFeatureID >= 0) {
switch (eContainerFeatureID) {
case UML2Package.PIN__ACTIVITY:
return eContainer.eInverseRemove(this, UML2Package.ACTIVITY__NODE, Activity.class, msgs);
case UML2Package.PIN__IN_STRUCTURED_NODE:
return eContainer.eInverseRemove(this, UML2Package.STRUCTURED_ACTIVITY_NODE__CONTAINED_NODE, StructuredActivityNode.class, msgs);
default:
return eDynamicBasicRemoveFromContainer(msgs);
}
}
return eContainer.eInverseRemove(this, EOPPOSITE_FEATURE_BASE - eContainerFeatureID, null, msgs);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Object eGet(EStructuralFeature eFeature, boolean resolve) {
switch (eDerivedStructuralFeatureID(eFeature)) {
case UML2Package.PIN__EANNOTATIONS:
return getEAnnotations();
case UML2Package.PIN__OWNED_ELEMENT:
return getOwnedElements();
case UML2Package.PIN__OWNER:
if (resolve) return getOwner();
return basicGetOwner();
case UML2Package.PIN__OWNED_COMMENT:
return getOwnedComments();
case UML2Package.PIN__TEMPLATE_BINDING:
return getTemplateBindings();
case UML2Package.PIN__OWNED_TEMPLATE_SIGNATURE:
return getOwnedTemplateSignature();
case UML2Package.PIN__NAME:
return getName();
case UML2Package.PIN__QUALIFIED_NAME:
return getQualifiedName();
case UML2Package.PIN__VISIBILITY:
return getVisibility();
case UML2Package.PIN__CLIENT_DEPENDENCY:
return getClientDependencies();
case UML2Package.PIN__NAME_EXPRESSION:
return getNameExpression();
case UML2Package.PIN__REDEFINITION_CONTEXT:
return getRedefinitionContexts();
case UML2Package.PIN__IS_LEAF:
return isLeaf() ? Boolean.TRUE : Boolean.FALSE;
case UML2Package.PIN__OUTGOING:
return getOutgoings();
case UML2Package.PIN__INCOMING:
return getIncomings();
case UML2Package.PIN__IN_GROUP:
return getInGroups();
case UML2Package.PIN__ACTIVITY:
return getActivity();
case UML2Package.PIN__REDEFINED_ELEMENT:
return getRedefinedElements();
case UML2Package.PIN__IN_STRUCTURED_NODE:
return getInStructuredNode();
case UML2Package.PIN__IN_PARTITION:
return getInPartitions();
case UML2Package.PIN__IN_INTERRUPTIBLE_REGION:
return getInInterruptibleRegions();
case UML2Package.PIN__TYPE:
if (resolve) return getType();
return basicGetType();
case UML2Package.PIN__ORDERING:
return getOrdering();
case UML2Package.PIN__UPPER_BOUND:
return getUpperBound();
case UML2Package.PIN__IN_STATE:
return getInStates();
case UML2Package.PIN__SELECTION:
if (resolve) return getSelection();
return basicGetSelection();
case UML2Package.PIN__IS_ORDERED:
return isOrdered() ? Boolean.TRUE : Boolean.FALSE;
case UML2Package.PIN__IS_UNIQUE:
return isUnique() ? Boolean.TRUE : Boolean.FALSE;
case UML2Package.PIN__LOWER:
return new Integer(getLower());
case UML2Package.PIN__UPPER:
return new Integer(getUpper());
case UML2Package.PIN__UPPER_VALUE:
return getUpperValue();
case UML2Package.PIN__LOWER_VALUE:
return getLowerValue();
}
return eDynamicGet(eFeature, resolve);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void eSet(EStructuralFeature eFeature, Object newValue) {
switch (eDerivedStructuralFeatureID(eFeature)) {
case UML2Package.PIN__EANNOTATIONS:
getEAnnotations().clear();
getEAnnotations().addAll((Collection)newValue);
return;
case UML2Package.PIN__OWNED_COMMENT:
getOwnedComments().clear();
getOwnedComments().addAll((Collection)newValue);
return;
case UML2Package.PIN__TEMPLATE_BINDING:
getTemplateBindings().clear();
getTemplateBindings().addAll((Collection)newValue);
return;
case UML2Package.PIN__OWNED_TEMPLATE_SIGNATURE:
setOwnedTemplateSignature((TemplateSignature)newValue);
return;
case UML2Package.PIN__NAME:
setName((String)newValue);
return;
case UML2Package.PIN__VISIBILITY:
setVisibility((VisibilityKind)newValue);
return;
case UML2Package.PIN__CLIENT_DEPENDENCY:
getClientDependencies().clear();
getClientDependencies().addAll((Collection)newValue);
return;
case UML2Package.PIN__NAME_EXPRESSION:
setNameExpression((StringExpression)newValue);
return;
case UML2Package.PIN__IS_LEAF:
setIsLeaf(((Boolean)newValue).booleanValue());
return;
case UML2Package.PIN__OUTGOING:
getOutgoings().clear();
getOutgoings().addAll((Collection)newValue);
return;
case UML2Package.PIN__INCOMING:
getIncomings().clear();
getIncomings().addAll((Collection)newValue);
return;
case UML2Package.PIN__ACTIVITY:
setActivity((Activity)newValue);
return;
case UML2Package.PIN__REDEFINED_ELEMENT:
getRedefinedElements().clear();
getRedefinedElements().addAll((Collection)newValue);
return;
case UML2Package.PIN__IN_STRUCTURED_NODE:
setInStructuredNode((StructuredActivityNode)newValue);
return;
case UML2Package.PIN__IN_PARTITION:
getInPartitions().clear();
getInPartitions().addAll((Collection)newValue);
return;
case UML2Package.PIN__IN_INTERRUPTIBLE_REGION:
getInInterruptibleRegions().clear();
getInInterruptibleRegions().addAll((Collection)newValue);
return;
case UML2Package.PIN__TYPE:
setType((Type)newValue);
return;
case UML2Package.PIN__ORDERING:
setOrdering((ObjectNodeOrderingKind)newValue);
return;
case UML2Package.PIN__UPPER_BOUND:
setUpperBound((ValueSpecification)newValue);
return;
case UML2Package.PIN__IN_STATE:
getInStates().clear();
getInStates().addAll((Collection)newValue);
return;
case UML2Package.PIN__SELECTION:
setSelection((Behavior)newValue);
return;
case UML2Package.PIN__IS_ORDERED:
setIsOrdered(((Boolean)newValue).booleanValue());
return;
case UML2Package.PIN__IS_UNIQUE:
setIsUnique(((Boolean)newValue).booleanValue());
return;
case UML2Package.PIN__UPPER_VALUE:
setUpperValue((ValueSpecification)newValue);
return;
case UML2Package.PIN__LOWER_VALUE:
setLowerValue((ValueSpecification)newValue);
return;
}
eDynamicSet(eFeature, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void eUnset(EStructuralFeature eFeature) {
switch (eDerivedStructuralFeatureID(eFeature)) {
case UML2Package.PIN__EANNOTATIONS:
getEAnnotations().clear();
return;
case UML2Package.PIN__OWNED_COMMENT:
getOwnedComments().clear();
return;
case UML2Package.PIN__TEMPLATE_BINDING:
getTemplateBindings().clear();
return;
case UML2Package.PIN__OWNED_TEMPLATE_SIGNATURE:
setOwnedTemplateSignature((TemplateSignature)null);
return;
case UML2Package.PIN__NAME:
setName(NAME_EDEFAULT);
return;
case UML2Package.PIN__VISIBILITY:
setVisibility(VISIBILITY_EDEFAULT);
return;
case UML2Package.PIN__CLIENT_DEPENDENCY:
getClientDependencies().clear();
return;
case UML2Package.PIN__NAME_EXPRESSION:
setNameExpression((StringExpression)null);
return;
case UML2Package.PIN__IS_LEAF:
setIsLeaf(IS_LEAF_EDEFAULT);
return;
case UML2Package.PIN__OUTGOING:
getOutgoings().clear();
return;
case UML2Package.PIN__INCOMING:
getIncomings().clear();
return;
case UML2Package.PIN__ACTIVITY:
setActivity(null);
return;
case UML2Package.PIN__REDEFINED_ELEMENT:
getRedefinedElements().clear();
return;
case UML2Package.PIN__IN_STRUCTURED_NODE:
setInStructuredNode((StructuredActivityNode)null);
return;
case UML2Package.PIN__IN_PARTITION:
getInPartitions().clear();
return;
case UML2Package.PIN__IN_INTERRUPTIBLE_REGION:
getInInterruptibleRegions().clear();
return;
case UML2Package.PIN__TYPE:
setType((Type)null);
return;
case UML2Package.PIN__ORDERING:
setOrdering(ORDERING_EDEFAULT);
return;
case UML2Package.PIN__UPPER_BOUND:
setUpperBound((ValueSpecification)null);
return;
case UML2Package.PIN__IN_STATE:
getInStates().clear();
return;
case UML2Package.PIN__SELECTION:
setSelection((Behavior)null);
return;
case UML2Package.PIN__IS_ORDERED:
setIsOrdered(IS_ORDERED_EDEFAULT);
return;
case UML2Package.PIN__IS_UNIQUE:
setIsUnique(IS_UNIQUE_EDEFAULT);
return;
case UML2Package.PIN__UPPER_VALUE:
setUpperValue((ValueSpecification)null);
return;
case UML2Package.PIN__LOWER_VALUE:
setLowerValue((ValueSpecification)null);
return;
}
eDynamicUnset(eFeature);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean eIsSet(EStructuralFeature eFeature) {
switch (eDerivedStructuralFeatureID(eFeature)) {
case UML2Package.PIN__EANNOTATIONS:
return eAnnotations != null && !eAnnotations.isEmpty();
case UML2Package.PIN__OWNED_ELEMENT:
return !getOwnedElements().isEmpty();
case UML2Package.PIN__OWNER:
return basicGetOwner() != null;
case UML2Package.PIN__OWNED_COMMENT:
return ownedComment != null && !ownedComment.isEmpty();
case UML2Package.PIN__TEMPLATE_BINDING:
return templateBinding != null && !templateBinding.isEmpty();
case UML2Package.PIN__OWNED_TEMPLATE_SIGNATURE:
return ownedTemplateSignature != null;
case UML2Package.PIN__NAME:
return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
case UML2Package.PIN__QUALIFIED_NAME:
return !"".equals(getQualifiedName()); //$NON-NLS-1$
case UML2Package.PIN__VISIBILITY:
return visibility != VISIBILITY_EDEFAULT;
case UML2Package.PIN__CLIENT_DEPENDENCY:
return clientDependency != null && !clientDependency.isEmpty();
case UML2Package.PIN__NAME_EXPRESSION:
return nameExpression != null;
case UML2Package.PIN__REDEFINITION_CONTEXT:
return !getRedefinitionContexts().isEmpty();
case UML2Package.PIN__IS_LEAF:
return isLeaf != IS_LEAF_EDEFAULT;
case UML2Package.PIN__OUTGOING:
return outgoing != null && !outgoing.isEmpty();
case UML2Package.PIN__INCOMING:
return incoming != null && !incoming.isEmpty();
case UML2Package.PIN__IN_GROUP:
return !getInGroups().isEmpty();
case UML2Package.PIN__ACTIVITY:
return getActivity() != null;
case UML2Package.PIN__REDEFINED_ELEMENT:
return redefinedElement != null && !redefinedElement.isEmpty();
case UML2Package.PIN__IN_STRUCTURED_NODE:
return getInStructuredNode() != null;
case UML2Package.PIN__IN_PARTITION:
return inPartition != null && !inPartition.isEmpty();
case UML2Package.PIN__IN_INTERRUPTIBLE_REGION:
return inInterruptibleRegion != null && !inInterruptibleRegion.isEmpty();
case UML2Package.PIN__TYPE:
return type != null;
case UML2Package.PIN__ORDERING:
return ordering != ORDERING_EDEFAULT;
case UML2Package.PIN__UPPER_BOUND:
return upperBound != null;
case UML2Package.PIN__IN_STATE:
return inState != null && !inState.isEmpty();
case UML2Package.PIN__SELECTION:
return selection != null;
case UML2Package.PIN__IS_ORDERED:
return isOrdered != IS_ORDERED_EDEFAULT;
case UML2Package.PIN__IS_UNIQUE:
return isUnique != IS_UNIQUE_EDEFAULT;
case UML2Package.PIN__LOWER:
return getLower() != 1;
case UML2Package.PIN__UPPER:
return getUpper() != 1;
case UML2Package.PIN__UPPER_VALUE:
return upperValue != null;
case UML2Package.PIN__LOWER_VALUE:
return lowerValue != null;
}
return eDynamicIsSet(eFeature);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) {
if (baseClass == MultiplicityElement.class) {
switch (derivedFeatureID) {
case UML2Package.PIN__IS_ORDERED: return UML2Package.MULTIPLICITY_ELEMENT__IS_ORDERED;
case UML2Package.PIN__IS_UNIQUE: return UML2Package.MULTIPLICITY_ELEMENT__IS_UNIQUE;
case UML2Package.PIN__LOWER: return UML2Package.MULTIPLICITY_ELEMENT__LOWER;
case UML2Package.PIN__UPPER: return UML2Package.MULTIPLICITY_ELEMENT__UPPER;
case UML2Package.PIN__UPPER_VALUE: return UML2Package.MULTIPLICITY_ELEMENT__UPPER_VALUE;
case UML2Package.PIN__LOWER_VALUE: return UML2Package.MULTIPLICITY_ELEMENT__LOWER_VALUE;
default: return -1;
}
}
return super.eBaseStructuralFeatureID(derivedFeatureID, baseClass);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) {
if (baseClass == MultiplicityElement.class) {
switch (baseFeatureID) {
case UML2Package.MULTIPLICITY_ELEMENT__IS_ORDERED: return UML2Package.PIN__IS_ORDERED;
case UML2Package.MULTIPLICITY_ELEMENT__IS_UNIQUE: return UML2Package.PIN__IS_UNIQUE;
case UML2Package.MULTIPLICITY_ELEMENT__LOWER: return UML2Package.PIN__LOWER;
case UML2Package.MULTIPLICITY_ELEMENT__UPPER: return UML2Package.PIN__UPPER;
case UML2Package.MULTIPLICITY_ELEMENT__UPPER_VALUE: return UML2Package.PIN__UPPER_VALUE;
case UML2Package.MULTIPLICITY_ELEMENT__LOWER_VALUE: return UML2Package.PIN__LOWER_VALUE;
default: return -1;
}
}
return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass);
}
// <!-- begin-custom-operations -->
/*
* (non-Javadoc)
*
* @see org.eclipse.uml2.MultiplicityElement#setLowerBound(int)
*/
public void setLowerBound(int value) {
MultiplicityElementOperations.setLowerBound(this, value);
}
/*
* (non-Javadoc)
*
* @see org.eclipse.uml2.MultiplicityElement#setUpperBound(int)
*/
public void setUpperBound(int value) {
MultiplicityElementOperations.setUpperBound(this, value);
}
// <!-- end-custom-operations -->
} //PinImpl