blob: c123b1ca407fe26dfe711497f06290f13ec265cf [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: SignalImpl.java,v 1.5 2004/04/30 17:21:45 khussey Exp $
*/
package org.eclipse.uml2.impl;
import java.util.Collection;
import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.Set;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.common.util.BasicEList;
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.EObjectContainmentEList;
import org.eclipse.emf.ecore.util.EcoreEList;
import org.eclipse.emf.ecore.util.InternalEList;
import org.eclipse.uml2.Behavior;
import org.eclipse.uml2.CollaborationOccurrence;
import org.eclipse.uml2.Property;
import org.eclipse.uml2.Signal;
import org.eclipse.uml2.StringExpression;
import org.eclipse.uml2.TemplateParameter;
import org.eclipse.uml2.TemplateSignature;
import org.eclipse.uml2.UML2Package;
import org.eclipse.uml2.VisibilityKind;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Signal</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.uml2.impl.SignalImpl#getOwnedAttributes <em>Owned Attribute</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class SignalImpl extends BehavioredClassifierImpl implements Signal {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final String copyright = "Copyright (c) 2003, 2004 IBM Corporation and others."; //$NON-NLS-1$
/**
* The cached value of the '{@link #getOwnedAttributes() <em>Owned Attribute</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getOwnedAttributes()
* @generated
* @ordered
*/
protected EList ownedAttribute = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected SignalImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EClass eStaticClass() {
return UML2Package.eINSTANCE.getSignal();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* Returns the value of the '<em><b>Owned Attribute</b></em>' containment reference list.
* <p>
* Subsets the following features:
* <ul>
* <li>{@link org.eclipse.uml2.Classifier#getAttributes}</li>
* <li>{@link org.eclipse.uml2.Namespace#getOwnedMembers}</li>
* </ul>
* </p>
* @generated
*/
public EList getOwnedAttributes() {
if (ownedAttribute == null) {
ownedAttribute = new EObjectContainmentEList(Property.class, this, UML2Package.SIGNAL__OWNED_ATTRIBUTE);
}
return ownedAttribute;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Property getOwnedAttribute(String unqualifiedName) {
for (Iterator i = getOwnedAttributes().iterator(); i.hasNext(); ) {
Property namedOwnedAttribute = (Property) i.next();
if (unqualifiedName.equals(namedOwnedAttribute.getName())) {
return namedOwnedAttribute;
}
}
return null;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Property createOwnedAttribute(EClass eClass) {
Property newOwnedAttribute = (Property) eClass.getEPackage().getEFactoryInstance().create(eClass);
if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.CREATE, UML2Package.SIGNAL__OWNED_ATTRIBUTE, null, newOwnedAttribute));
}
getOwnedAttributes().add(newOwnedAttribute);
return newOwnedAttribute;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* Returns the value of the '<em><b>Attribute</b></em>' reference list, a derived union.
* The list contents are of type {@link org.eclipse.uml2.Property}.
* @generated
*/
public EList getAttributes() {
// TODO: test this union getter
if (!getCacheAdapter().containsKey(this, UML2Package.eINSTANCE.getClassifier_Attribute())) {
Set union = new LinkedHashSet();
union.addAll(super.getAttributes());
union.addAll(getOwnedAttributes());
getCacheAdapter().put(
this,
UML2Package.eINSTANCE.getClassifier_Attribute(),
new EcoreEList.UnmodifiableEList(this,
UML2Package.eINSTANCE.getClassifier_Attribute(),
union.size(),
union.toArray()));
}
return (EList) getCacheAdapter().get(this, UML2Package.eINSTANCE.getClassifier_Attribute());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* Returns the value of the '<em><b>Owned Member</b></em>' reference list, a derived union.
* The list contents are of type {@link org.eclipse.uml2.NamedElement}.
* It is bidirectional and its opposite is '{@link org.eclipse.uml2.NamedElement#getNamespace <em>Namespace</em>}'.
* @generated
*/
public EList getOwnedMembers() {
// TODO: test this union getter
if (!getCacheAdapter().containsKey(this, UML2Package.eINSTANCE.getSignal().getEAllOperations().get(73))) {
Set union = new LinkedHashSet();
union.addAll(super.getOwnedMembers());
union.addAll(getOwnedAttributes());
getCacheAdapter().put(
this,
UML2Package.eINSTANCE.getSignal().getEAllOperations().get(73),
new BasicEList.UnmodifiableEList(union.size(), union.toArray()));
}
return (EList) getCacheAdapter().get(this, UML2Package.eINSTANCE.getSignal().getEAllOperations().get(73));
}
/**
* <!-- 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.SIGNAL__EANNOTATIONS:
return ((InternalEList)getEAnnotations()).basicAdd(otherEnd, msgs);
case UML2Package.SIGNAL__TEMPLATE_BINDING:
return ((InternalEList)getTemplateBindings()).basicAdd(otherEnd, msgs);
case UML2Package.SIGNAL__OWNED_TEMPLATE_SIGNATURE:
if (ownedTemplateSignature != null)
msgs = ((InternalEObject)ownedTemplateSignature).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - UML2Package.SIGNAL__OWNED_TEMPLATE_SIGNATURE, null, msgs);
return basicSetOwnedTemplateSignature((TemplateSignature)otherEnd, msgs);
case UML2Package.SIGNAL__CLIENT_DEPENDENCY:
return ((InternalEList)getClientDependencies()).basicAdd(otherEnd, msgs);
case UML2Package.SIGNAL__OWNED_RULE:
return ((InternalEList)getOwnedRules()).basicAdd(otherEnd, msgs);
case UML2Package.SIGNAL__ELEMENT_IMPORT:
return ((InternalEList)getElementImports()).basicAdd(otherEnd, msgs);
case UML2Package.SIGNAL__PACKAGE_IMPORT:
return ((InternalEList)getPackageImports()).basicAdd(otherEnd, msgs);
case UML2Package.SIGNAL__TEMPLATE_PARAMETER:
if (templateParameter != null)
msgs = ((InternalEObject)templateParameter).eInverseRemove(this, UML2Package.TEMPLATE_PARAMETER__PARAMETERED_ELEMENT, TemplateParameter.class, msgs);
return basicSetTemplateParameter((TemplateParameter)otherEnd, msgs);
case UML2Package.SIGNAL__OWNING_PARAMETER:
if (eContainer != null)
msgs = eBasicRemoveFromContainer(msgs);
return eBasicSetContainer(otherEnd, UML2Package.SIGNAL__OWNING_PARAMETER, msgs);
case UML2Package.SIGNAL__GENERALIZATION:
return ((InternalEList)getGeneralizations()).basicAdd(otherEnd, msgs);
case UML2Package.SIGNAL__SUBSTITUTION:
return ((InternalEList)getSubstitutions()).basicAdd(otherEnd, msgs);
case UML2Package.SIGNAL__POWERTYPE_EXTENT:
return ((InternalEList)getPowertypeExtents()).basicAdd(otherEnd, msgs);
case UML2Package.SIGNAL__OWNED_BEHAVIOR:
return ((InternalEList)getOwnedBehaviors()).basicAdd(otherEnd, msgs);
case UML2Package.SIGNAL__IMPLEMENTATION:
return ((InternalEList)getImplementations()).basicAdd(otherEnd, msgs);
case UML2Package.SIGNAL__OWNED_STATE_MACHINE:
return ((InternalEList)getOwnedStateMachines()).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.SIGNAL__EANNOTATIONS:
return ((InternalEList)getEAnnotations()).basicRemove(otherEnd, msgs);
case UML2Package.SIGNAL__OWNED_COMMENT:
return ((InternalEList)getOwnedComments()).basicRemove(otherEnd, msgs);
case UML2Package.SIGNAL__TEMPLATE_BINDING:
return ((InternalEList)getTemplateBindings()).basicRemove(otherEnd, msgs);
case UML2Package.SIGNAL__OWNED_TEMPLATE_SIGNATURE:
return basicSetOwnedTemplateSignature(null, msgs);
case UML2Package.SIGNAL__CLIENT_DEPENDENCY:
return ((InternalEList)getClientDependencies()).basicRemove(otherEnd, msgs);
case UML2Package.SIGNAL__NAME_EXPRESSION:
return basicSetNameExpression(null, msgs);
case UML2Package.SIGNAL__OWNED_RULE:
return ((InternalEList)getOwnedRules()).basicRemove(otherEnd, msgs);
case UML2Package.SIGNAL__ELEMENT_IMPORT:
return ((InternalEList)getElementImports()).basicRemove(otherEnd, msgs);
case UML2Package.SIGNAL__PACKAGE_IMPORT:
return ((InternalEList)getPackageImports()).basicRemove(otherEnd, msgs);
case UML2Package.SIGNAL__TEMPLATE_PARAMETER:
return basicSetTemplateParameter(null, msgs);
case UML2Package.SIGNAL__OWNING_PARAMETER:
return eBasicSetContainer(null, UML2Package.SIGNAL__OWNING_PARAMETER, msgs);
case UML2Package.SIGNAL__GENERALIZATION:
return ((InternalEList)getGeneralizations()).basicRemove(otherEnd, msgs);
case UML2Package.SIGNAL__SUBSTITUTION:
return ((InternalEList)getSubstitutions()).basicRemove(otherEnd, msgs);
case UML2Package.SIGNAL__POWERTYPE_EXTENT:
return ((InternalEList)getPowertypeExtents()).basicRemove(otherEnd, msgs);
case UML2Package.SIGNAL__OWNED_USE_CASE:
return ((InternalEList)getOwnedUseCases()).basicRemove(otherEnd, msgs);
case UML2Package.SIGNAL__OCCURRENCE:
return ((InternalEList)getOccurrences()).basicRemove(otherEnd, msgs);
case UML2Package.SIGNAL__OWNED_BEHAVIOR:
return ((InternalEList)getOwnedBehaviors()).basicRemove(otherEnd, msgs);
case UML2Package.SIGNAL__IMPLEMENTATION:
return ((InternalEList)getImplementations()).basicRemove(otherEnd, msgs);
case UML2Package.SIGNAL__OWNED_STATE_MACHINE:
return ((InternalEList)getOwnedStateMachines()).basicRemove(otherEnd, msgs);
case UML2Package.SIGNAL__OWNED_ATTRIBUTE:
return ((InternalEList)getOwnedAttributes()).basicRemove(otherEnd, 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.SIGNAL__OWNING_PARAMETER:
return eContainer.eInverseRemove(this, UML2Package.TEMPLATE_PARAMETER__OWNED_PARAMETERED_ELEMENT, TemplateParameter.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.SIGNAL__EANNOTATIONS:
return getEAnnotations();
case UML2Package.SIGNAL__OWNED_ELEMENT:
return getOwnedElements();
case UML2Package.SIGNAL__OWNER:
if (resolve) return getOwner();
return basicGetOwner();
case UML2Package.SIGNAL__OWNED_COMMENT:
return getOwnedComments();
case UML2Package.SIGNAL__TEMPLATE_BINDING:
return getTemplateBindings();
case UML2Package.SIGNAL__OWNED_TEMPLATE_SIGNATURE:
return getOwnedTemplateSignature();
case UML2Package.SIGNAL__NAME:
return getName();
case UML2Package.SIGNAL__QUALIFIED_NAME:
return getQualifiedName();
case UML2Package.SIGNAL__VISIBILITY:
return getVisibility();
case UML2Package.SIGNAL__CLIENT_DEPENDENCY:
return getClientDependencies();
case UML2Package.SIGNAL__NAME_EXPRESSION:
return getNameExpression();
case UML2Package.SIGNAL__MEMBER:
return getMembers();
case UML2Package.SIGNAL__OWNED_RULE:
return getOwnedRules();
case UML2Package.SIGNAL__IMPORTED_MEMBER:
return getImportedMembers();
case UML2Package.SIGNAL__ELEMENT_IMPORT:
return getElementImports();
case UML2Package.SIGNAL__PACKAGE_IMPORT:
return getPackageImports();
case UML2Package.SIGNAL__TEMPLATE_PARAMETER:
if (resolve) return getTemplateParameter();
return basicGetTemplateParameter();
case UML2Package.SIGNAL__OWNING_PARAMETER:
return getOwningParameter();
case UML2Package.SIGNAL__PACKAGEABLE_ELEMENT_VISIBILITY:
return getPackageableElement_visibility();
case UML2Package.SIGNAL__PACKAGE:
if (resolve) return getPackage();
return basicGetPackage();
case UML2Package.SIGNAL__REDEFINITION_CONTEXT:
return getRedefinitionContexts();
case UML2Package.SIGNAL__IS_LEAF:
return isLeaf() ? Boolean.TRUE : Boolean.FALSE;
case UML2Package.SIGNAL__FEATURE:
return getFeatures();
case UML2Package.SIGNAL__IS_ABSTRACT:
return isAbstract() ? Boolean.TRUE : Boolean.FALSE;
case UML2Package.SIGNAL__INHERITED_MEMBER:
return getInheritedMembers();
case UML2Package.SIGNAL__GENERAL:
return getGenerals();
case UML2Package.SIGNAL__GENERALIZATION:
return getGeneralizations();
case UML2Package.SIGNAL__ATTRIBUTE:
return getAttributes();
case UML2Package.SIGNAL__REDEFINED_CLASSIFIER:
return getRedefinedClassifiers();
case UML2Package.SIGNAL__SUBSTITUTION:
return getSubstitutions();
case UML2Package.SIGNAL__POWERTYPE_EXTENT:
return getPowertypeExtents();
case UML2Package.SIGNAL__OWNED_USE_CASE:
return getOwnedUseCases();
case UML2Package.SIGNAL__REPRESENTATION:
return getRepresentation();
case UML2Package.SIGNAL__OCCURRENCE:
return getOccurrences();
case UML2Package.SIGNAL__OWNED_BEHAVIOR:
return getOwnedBehaviors();
case UML2Package.SIGNAL__CLASSIFIER_BEHAVIOR:
return getClassifierBehavior();
case UML2Package.SIGNAL__IMPLEMENTATION:
return getImplementations();
case UML2Package.SIGNAL__OWNED_STATE_MACHINE:
return getOwnedStateMachines();
case UML2Package.SIGNAL__OWNED_ATTRIBUTE:
return getOwnedAttributes();
}
return eDynamicGet(eFeature, resolve);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void eSet(EStructuralFeature eFeature, Object newValue) {
switch (eDerivedStructuralFeatureID(eFeature)) {
case UML2Package.SIGNAL__EANNOTATIONS:
getEAnnotations().clear();
getEAnnotations().addAll((Collection)newValue);
return;
case UML2Package.SIGNAL__OWNED_COMMENT:
getOwnedComments().clear();
getOwnedComments().addAll((Collection)newValue);
return;
case UML2Package.SIGNAL__TEMPLATE_BINDING:
getTemplateBindings().clear();
getTemplateBindings().addAll((Collection)newValue);
return;
case UML2Package.SIGNAL__OWNED_TEMPLATE_SIGNATURE:
setOwnedTemplateSignature((TemplateSignature)newValue);
return;
case UML2Package.SIGNAL__NAME:
setName((String)newValue);
return;
case UML2Package.SIGNAL__VISIBILITY:
setVisibility((VisibilityKind)newValue);
return;
case UML2Package.SIGNAL__CLIENT_DEPENDENCY:
getClientDependencies().clear();
getClientDependencies().addAll((Collection)newValue);
return;
case UML2Package.SIGNAL__NAME_EXPRESSION:
setNameExpression((StringExpression)newValue);
return;
case UML2Package.SIGNAL__OWNED_RULE:
getOwnedRules().clear();
getOwnedRules().addAll((Collection)newValue);
return;
case UML2Package.SIGNAL__ELEMENT_IMPORT:
getElementImports().clear();
getElementImports().addAll((Collection)newValue);
return;
case UML2Package.SIGNAL__PACKAGE_IMPORT:
getPackageImports().clear();
getPackageImports().addAll((Collection)newValue);
return;
case UML2Package.SIGNAL__TEMPLATE_PARAMETER:
setTemplateParameter((TemplateParameter)newValue);
return;
case UML2Package.SIGNAL__OWNING_PARAMETER:
setOwningParameter((TemplateParameter)newValue);
return;
case UML2Package.SIGNAL__PACKAGEABLE_ELEMENT_VISIBILITY:
setPackageableElement_visibility((VisibilityKind)newValue);
return;
case UML2Package.SIGNAL__IS_LEAF:
setIsLeaf(((Boolean)newValue).booleanValue());
return;
case UML2Package.SIGNAL__IS_ABSTRACT:
setIsAbstract(((Boolean)newValue).booleanValue());
return;
case UML2Package.SIGNAL__GENERALIZATION:
getGeneralizations().clear();
getGeneralizations().addAll((Collection)newValue);
return;
case UML2Package.SIGNAL__REDEFINED_CLASSIFIER:
getRedefinedClassifiers().clear();
getRedefinedClassifiers().addAll((Collection)newValue);
return;
case UML2Package.SIGNAL__SUBSTITUTION:
getSubstitutions().clear();
getSubstitutions().addAll((Collection)newValue);
return;
case UML2Package.SIGNAL__POWERTYPE_EXTENT:
getPowertypeExtents().clear();
getPowertypeExtents().addAll((Collection)newValue);
return;
case UML2Package.SIGNAL__OWNED_USE_CASE:
getOwnedUseCases().clear();
getOwnedUseCases().addAll((Collection)newValue);
return;
case UML2Package.SIGNAL__REPRESENTATION:
setRepresentation((CollaborationOccurrence)newValue);
return;
case UML2Package.SIGNAL__OCCURRENCE:
getOccurrences().clear();
getOccurrences().addAll((Collection)newValue);
return;
case UML2Package.SIGNAL__OWNED_BEHAVIOR:
getOwnedBehaviors().clear();
getOwnedBehaviors().addAll((Collection)newValue);
return;
case UML2Package.SIGNAL__CLASSIFIER_BEHAVIOR:
setClassifierBehavior((Behavior)newValue);
return;
case UML2Package.SIGNAL__IMPLEMENTATION:
getImplementations().clear();
getImplementations().addAll((Collection)newValue);
return;
case UML2Package.SIGNAL__OWNED_STATE_MACHINE:
getOwnedStateMachines().clear();
getOwnedStateMachines().addAll((Collection)newValue);
return;
case UML2Package.SIGNAL__OWNED_ATTRIBUTE:
getOwnedAttributes().clear();
getOwnedAttributes().addAll((Collection)newValue);
return;
}
eDynamicSet(eFeature, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void eUnset(EStructuralFeature eFeature) {
switch (eDerivedStructuralFeatureID(eFeature)) {
case UML2Package.SIGNAL__EANNOTATIONS:
getEAnnotations().clear();
return;
case UML2Package.SIGNAL__OWNED_COMMENT:
getOwnedComments().clear();
return;
case UML2Package.SIGNAL__TEMPLATE_BINDING:
getTemplateBindings().clear();
return;
case UML2Package.SIGNAL__OWNED_TEMPLATE_SIGNATURE:
setOwnedTemplateSignature((TemplateSignature)null);
return;
case UML2Package.SIGNAL__NAME:
setName(NAME_EDEFAULT);
return;
case UML2Package.SIGNAL__VISIBILITY:
setVisibility(VISIBILITY_EDEFAULT);
return;
case UML2Package.SIGNAL__CLIENT_DEPENDENCY:
getClientDependencies().clear();
return;
case UML2Package.SIGNAL__NAME_EXPRESSION:
setNameExpression((StringExpression)null);
return;
case UML2Package.SIGNAL__OWNED_RULE:
getOwnedRules().clear();
return;
case UML2Package.SIGNAL__ELEMENT_IMPORT:
getElementImports().clear();
return;
case UML2Package.SIGNAL__PACKAGE_IMPORT:
getPackageImports().clear();
return;
case UML2Package.SIGNAL__TEMPLATE_PARAMETER:
setTemplateParameter((TemplateParameter)null);
return;
case UML2Package.SIGNAL__OWNING_PARAMETER:
setOwningParameter(null);
return;
case UML2Package.SIGNAL__PACKAGEABLE_ELEMENT_VISIBILITY:
setPackageableElement_visibility(PACKAGEABLE_ELEMENT_VISIBILITY_EDEFAULT);
return;
case UML2Package.SIGNAL__IS_LEAF:
setIsLeaf(IS_LEAF_EDEFAULT);
return;
case UML2Package.SIGNAL__IS_ABSTRACT:
setIsAbstract(IS_ABSTRACT_EDEFAULT);
return;
case UML2Package.SIGNAL__GENERALIZATION:
getGeneralizations().clear();
return;
case UML2Package.SIGNAL__REDEFINED_CLASSIFIER:
getRedefinedClassifiers().clear();
return;
case UML2Package.SIGNAL__SUBSTITUTION:
getSubstitutions().clear();
return;
case UML2Package.SIGNAL__POWERTYPE_EXTENT:
getPowertypeExtents().clear();
return;
case UML2Package.SIGNAL__OWNED_USE_CASE:
getOwnedUseCases().clear();
return;
case UML2Package.SIGNAL__REPRESENTATION:
setRepresentation((CollaborationOccurrence)null);
return;
case UML2Package.SIGNAL__OCCURRENCE:
getOccurrences().clear();
return;
case UML2Package.SIGNAL__OWNED_BEHAVIOR:
getOwnedBehaviors().clear();
return;
case UML2Package.SIGNAL__CLASSIFIER_BEHAVIOR:
setClassifierBehavior((Behavior)null);
return;
case UML2Package.SIGNAL__IMPLEMENTATION:
getImplementations().clear();
return;
case UML2Package.SIGNAL__OWNED_STATE_MACHINE:
getOwnedStateMachines().clear();
return;
case UML2Package.SIGNAL__OWNED_ATTRIBUTE:
getOwnedAttributes().clear();
return;
}
eDynamicUnset(eFeature);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean eIsSet(EStructuralFeature eFeature) {
switch (eDerivedStructuralFeatureID(eFeature)) {
case UML2Package.SIGNAL__EANNOTATIONS:
return eAnnotations != null && !eAnnotations.isEmpty();
case UML2Package.SIGNAL__OWNED_ELEMENT:
return !getOwnedElements().isEmpty();
case UML2Package.SIGNAL__OWNER:
return basicGetOwner() != null;
case UML2Package.SIGNAL__OWNED_COMMENT:
return ownedComment != null && !ownedComment.isEmpty();
case UML2Package.SIGNAL__TEMPLATE_BINDING:
return templateBinding != null && !templateBinding.isEmpty();
case UML2Package.SIGNAL__OWNED_TEMPLATE_SIGNATURE:
return ownedTemplateSignature != null;
case UML2Package.SIGNAL__NAME:
return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
case UML2Package.SIGNAL__QUALIFIED_NAME:
return !"".equals(getQualifiedName()); //$NON-NLS-1$
case UML2Package.SIGNAL__VISIBILITY:
return visibility != VISIBILITY_EDEFAULT;
case UML2Package.SIGNAL__CLIENT_DEPENDENCY:
return clientDependency != null && !clientDependency.isEmpty();
case UML2Package.SIGNAL__NAME_EXPRESSION:
return nameExpression != null;
case UML2Package.SIGNAL__MEMBER:
return !getMembers().isEmpty();
case UML2Package.SIGNAL__OWNED_RULE:
return ownedRule != null && !ownedRule.isEmpty();
case UML2Package.SIGNAL__IMPORTED_MEMBER:
return !getImportedMembers().isEmpty();
case UML2Package.SIGNAL__ELEMENT_IMPORT:
return elementImport != null && !elementImport.isEmpty();
case UML2Package.SIGNAL__PACKAGE_IMPORT:
return packageImport != null && !packageImport.isEmpty();
case UML2Package.SIGNAL__TEMPLATE_PARAMETER:
return templateParameter != null;
case UML2Package.SIGNAL__OWNING_PARAMETER:
return getOwningParameter() != null;
case UML2Package.SIGNAL__PACKAGEABLE_ELEMENT_VISIBILITY:
return packageableElement_visibility != PACKAGEABLE_ELEMENT_VISIBILITY_EDEFAULT;
case UML2Package.SIGNAL__PACKAGE:
return basicGetPackage() != null;
case UML2Package.SIGNAL__REDEFINITION_CONTEXT:
return !getRedefinitionContexts().isEmpty();
case UML2Package.SIGNAL__IS_LEAF:
return isLeaf != IS_LEAF_EDEFAULT;
case UML2Package.SIGNAL__FEATURE:
return !getFeatures().isEmpty();
case UML2Package.SIGNAL__IS_ABSTRACT:
return isAbstract != IS_ABSTRACT_EDEFAULT;
case UML2Package.SIGNAL__INHERITED_MEMBER:
return !getInheritedMembers().isEmpty();
case UML2Package.SIGNAL__GENERAL:
return !getGenerals().isEmpty();
case UML2Package.SIGNAL__GENERALIZATION:
return generalization != null && !generalization.isEmpty();
case UML2Package.SIGNAL__ATTRIBUTE:
return !getAttributes().isEmpty();
case UML2Package.SIGNAL__REDEFINED_CLASSIFIER:
return redefinedClassifier != null && !redefinedClassifier.isEmpty();
case UML2Package.SIGNAL__SUBSTITUTION:
return substitution != null && !substitution.isEmpty();
case UML2Package.SIGNAL__POWERTYPE_EXTENT:
return powertypeExtent != null && !powertypeExtent.isEmpty();
case UML2Package.SIGNAL__OWNED_USE_CASE:
return ownedUseCase != null && !ownedUseCase.isEmpty();
case UML2Package.SIGNAL__REPRESENTATION:
return representation != null;
case UML2Package.SIGNAL__OCCURRENCE:
return occurrence != null && !occurrence.isEmpty();
case UML2Package.SIGNAL__OWNED_BEHAVIOR:
return ownedBehavior != null && !ownedBehavior.isEmpty();
case UML2Package.SIGNAL__CLASSIFIER_BEHAVIOR:
return classifierBehavior != null;
case UML2Package.SIGNAL__IMPLEMENTATION:
return implementation != null && !implementation.isEmpty();
case UML2Package.SIGNAL__OWNED_STATE_MACHINE:
return ownedStateMachine != null && !ownedStateMachine.isEmpty();
case UML2Package.SIGNAL__OWNED_ATTRIBUTE:
return ownedAttribute != null && !ownedAttribute.isEmpty();
}
return eDynamicIsSet(eFeature);
}
} //SignalImpl