All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.uml2.uml.internal.impl.SendSignalActionImpl Maven / Gradle / Ivy

/*
 * Copyright (c) 2005, 2014 IBM Corporation, CEA, 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
 *   Kenn Hussey - 286329, 323181
 *   Kenn Hussey (CEA) - 327039, 351774, 418466
 *
 */
package org.eclipse.uml2.uml.internal.impl;

import java.lang.reflect.InvocationTargetException;
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.EAnnotation;
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.Activity;
import org.eclipse.uml2.uml.ActivityEdge;
import org.eclipse.uml2.uml.ActivityNode;
import org.eclipse.uml2.uml.ActivityPartition;
import org.eclipse.uml2.uml.Comment;
import org.eclipse.uml2.uml.Constraint;
import org.eclipse.uml2.uml.ExceptionHandler;
import org.eclipse.uml2.uml.InputPin;
import org.eclipse.uml2.uml.InterruptibleActivityRegion;
import org.eclipse.uml2.uml.NamedElement;
import org.eclipse.uml2.uml.Namespace;
import org.eclipse.uml2.uml.Port;
import org.eclipse.uml2.uml.RedefinableElement;
import org.eclipse.uml2.uml.SendSignalAction;
import org.eclipse.uml2.uml.Signal;
import org.eclipse.uml2.uml.Stereotype;
import org.eclipse.uml2.uml.StringExpression;
import org.eclipse.uml2.uml.StructuredActivityNode;
import org.eclipse.uml2.uml.Type;
import org.eclipse.uml2.uml.UMLPackage;
import org.eclipse.uml2.uml.VisibilityKind;

import org.eclipse.uml2.uml.internal.operations.SendSignalActionOperations;

/**
 * 
 * An implementation of the model object 'Send Signal Action'.
 * 
 * 

* The following features are implemented: *

    *
  • {@link org.eclipse.uml2.uml.internal.impl.SendSignalActionImpl#getInputs Input}
  • *
  • {@link org.eclipse.uml2.uml.internal.impl.SendSignalActionImpl#getSignal Signal}
  • *
  • {@link org.eclipse.uml2.uml.internal.impl.SendSignalActionImpl#getTarget Target}
  • *
*

* * @generated */ public class SendSignalActionImpl extends InvocationActionImpl implements SendSignalAction { /** * The cached value of the '{@link #getSignal() Signal}' reference. * * * @see #getSignal() * @generated * @ordered */ protected Signal signal; /** * The cached value of the '{@link #getTarget() Target}' containment reference. * * * @see #getTarget() * @generated * @ordered */ protected InputPin target; /** * * * @generated */ protected SendSignalActionImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return UMLPackage.Literals.SEND_SIGNAL_ACTION; } /** * * * @generated */ @Override public EList getInputs() { CacheAdapter cache = getCacheAdapter(); if (cache != null) { Resource eResource = eResource(); @SuppressWarnings("unchecked") EList inputs = (EList) cache.get(eResource, this, UMLPackage.Literals.ACTION__INPUT); if (inputs == null) { cache.put(eResource, this, UMLPackage.Literals.ACTION__INPUT, inputs = new DerivedUnionEObjectEList( InputPin.class, this, UMLPackage.SEND_SIGNAL_ACTION__INPUT, INPUT_ESUBSETS)); } return inputs; } return new DerivedUnionEObjectEList(InputPin.class, this, UMLPackage.SEND_SIGNAL_ACTION__INPUT, INPUT_ESUBSETS); } /** * * * @generated */ public InputPin getTarget() { if (target != null && target.eIsProxy()) { InternalEObject oldTarget = (InternalEObject) target; target = (InputPin) eResolveProxy(oldTarget); if (target != oldTarget) { InternalEObject newTarget = (InternalEObject) target; NotificationChain msgs = oldTarget.eInverseRemove(this, EOPPOSITE_FEATURE_BASE - UMLPackage.SEND_SIGNAL_ACTION__TARGET, null, null); if (newTarget.eInternalContainer() == null) { msgs = newTarget.eInverseAdd(this, EOPPOSITE_FEATURE_BASE - UMLPackage.SEND_SIGNAL_ACTION__TARGET, null, msgs); } if (msgs != null) msgs.dispatch(); if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, UMLPackage.SEND_SIGNAL_ACTION__TARGET, oldTarget, target)); } } return target; } /** * * * @generated */ public InputPin basicGetTarget() { return target; } /** * * * @generated */ public NotificationChain basicSetTarget(InputPin newTarget, NotificationChain msgs) { InputPin oldTarget = target; target = newTarget; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, UMLPackage.SEND_SIGNAL_ACTION__TARGET, oldTarget, newTarget); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * * * @generated */ public void setTarget(InputPin newTarget) { if (newTarget != target) { NotificationChain msgs = null; if (target != null) msgs = ((InternalEObject) target).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - UMLPackage.SEND_SIGNAL_ACTION__TARGET, null, msgs); if (newTarget != null) msgs = ((InternalEObject) newTarget).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - UMLPackage.SEND_SIGNAL_ACTION__TARGET, null, msgs); msgs = basicSetTarget(newTarget, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, UMLPackage.SEND_SIGNAL_ACTION__TARGET, newTarget, newTarget)); } /** * * * @generated */ public InputPin createTarget(String name, Type type, EClass eClass) { InputPin newTarget = (InputPin) create(eClass); setTarget(newTarget); if (name != null) newTarget.setName(name); if (type != null) newTarget.setType(type); return newTarget; } /** * * * @generated */ public InputPin createTarget(String name, Type type) { return createTarget(name, type, UMLPackage.Literals.INPUT_PIN); } /** * * * @generated */ public Signal getSignal() { if (signal != null && signal.eIsProxy()) { InternalEObject oldSignal = (InternalEObject) signal; signal = (Signal) eResolveProxy(oldSignal); if (signal != oldSignal) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, UMLPackage.SEND_SIGNAL_ACTION__SIGNAL, oldSignal, signal)); } } return signal; } /** * * * @generated */ public Signal basicGetSignal() { return signal; } /** * * * @generated */ public void setSignal(Signal newSignal) { Signal oldSignal = signal; signal = newSignal; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, UMLPackage.SEND_SIGNAL_ACTION__SIGNAL, oldSignal, signal)); } /** * * * @generated */ public boolean validateNumberOrder(DiagnosticChain diagnostics, Map context) { return SendSignalActionOperations.validateNumberOrder(this, diagnostics, context); } /** * * * @generated */ public boolean validateTypeTargetPin(DiagnosticChain diagnostics, Map context) { return SendSignalActionOperations.validateTypeTargetPin(this, diagnostics, context); } /** * * * @generated */ public boolean validateTypeOrderingMultiplicity( DiagnosticChain diagnostics, Map context) { return SendSignalActionOperations.validateTypeOrderingMultiplicity( this, diagnostics, context); } /** * * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case UMLPackage.SEND_SIGNAL_ACTION__EANNOTATIONS : return ((InternalEList) getEAnnotations()).basicRemove( otherEnd, msgs); case UMLPackage.SEND_SIGNAL_ACTION__OWNED_COMMENT : return ((InternalEList) getOwnedComments()).basicRemove( otherEnd, msgs); case UMLPackage.SEND_SIGNAL_ACTION__NAME_EXPRESSION : return basicSetNameExpression(null, msgs); case UMLPackage.SEND_SIGNAL_ACTION__IN_INTERRUPTIBLE_REGION : return ((InternalEList) getInInterruptibleRegions()) .basicRemove(otherEnd, msgs); case UMLPackage.SEND_SIGNAL_ACTION__IN_STRUCTURED_NODE : return basicSetInStructuredNode(null, msgs); case UMLPackage.SEND_SIGNAL_ACTION__INCOMING : return ((InternalEList) getIncomings()).basicRemove( otherEnd, msgs); case UMLPackage.SEND_SIGNAL_ACTION__OUTGOING : return ((InternalEList) getOutgoings()).basicRemove( otherEnd, msgs); case UMLPackage.SEND_SIGNAL_ACTION__IN_PARTITION : return ((InternalEList) getInPartitions()).basicRemove( otherEnd, msgs); case UMLPackage.SEND_SIGNAL_ACTION__HANDLER : return ((InternalEList) getHandlers()).basicRemove(otherEnd, msgs); case UMLPackage.SEND_SIGNAL_ACTION__LOCAL_POSTCONDITION : return ((InternalEList) getLocalPostconditions()) .basicRemove(otherEnd, msgs); case UMLPackage.SEND_SIGNAL_ACTION__LOCAL_PRECONDITION : return ((InternalEList) getLocalPreconditions()) .basicRemove(otherEnd, msgs); case UMLPackage.SEND_SIGNAL_ACTION__ARGUMENT : return ((InternalEList) getArguments()).basicRemove( otherEnd, msgs); case UMLPackage.SEND_SIGNAL_ACTION__TARGET : return basicSetTarget(null, msgs); } return eDynamicInverseRemove(otherEnd, featureID, msgs); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case UMLPackage.SEND_SIGNAL_ACTION__EANNOTATIONS : return getEAnnotations(); case UMLPackage.SEND_SIGNAL_ACTION__OWNED_COMMENT : return getOwnedComments(); case UMLPackage.SEND_SIGNAL_ACTION__OWNED_ELEMENT : return getOwnedElements(); case UMLPackage.SEND_SIGNAL_ACTION__OWNER : if (resolve) return getOwner(); return basicGetOwner(); case UMLPackage.SEND_SIGNAL_ACTION__CLIENT_DEPENDENCY : return getClientDependencies(); case UMLPackage.SEND_SIGNAL_ACTION__NAME : return getName(); case UMLPackage.SEND_SIGNAL_ACTION__NAME_EXPRESSION : if (resolve) return getNameExpression(); return basicGetNameExpression(); case UMLPackage.SEND_SIGNAL_ACTION__NAMESPACE : if (resolve) return getNamespace(); return basicGetNamespace(); case UMLPackage.SEND_SIGNAL_ACTION__QUALIFIED_NAME : return getQualifiedName(); case UMLPackage.SEND_SIGNAL_ACTION__VISIBILITY : return getVisibility(); case UMLPackage.SEND_SIGNAL_ACTION__IS_LEAF : return isLeaf(); case UMLPackage.SEND_SIGNAL_ACTION__REDEFINED_ELEMENT : return getRedefinedElements(); case UMLPackage.SEND_SIGNAL_ACTION__REDEFINITION_CONTEXT : return getRedefinitionContexts(); case UMLPackage.SEND_SIGNAL_ACTION__ACTIVITY : if (resolve) return getActivity(); return basicGetActivity(); case UMLPackage.SEND_SIGNAL_ACTION__IN_GROUP : return getInGroups(); case UMLPackage.SEND_SIGNAL_ACTION__IN_INTERRUPTIBLE_REGION : return getInInterruptibleRegions(); case UMLPackage.SEND_SIGNAL_ACTION__IN_STRUCTURED_NODE : if (resolve) return getInStructuredNode(); return basicGetInStructuredNode(); case UMLPackage.SEND_SIGNAL_ACTION__INCOMING : return getIncomings(); case UMLPackage.SEND_SIGNAL_ACTION__OUTGOING : return getOutgoings(); case UMLPackage.SEND_SIGNAL_ACTION__REDEFINED_NODE : return getRedefinedNodes(); case UMLPackage.SEND_SIGNAL_ACTION__IN_PARTITION : return getInPartitions(); case UMLPackage.SEND_SIGNAL_ACTION__HANDLER : return getHandlers(); case UMLPackage.SEND_SIGNAL_ACTION__CONTEXT : if (resolve) return getContext(); return basicGetContext(); case UMLPackage.SEND_SIGNAL_ACTION__INPUT : return getInputs(); case UMLPackage.SEND_SIGNAL_ACTION__IS_LOCALLY_REENTRANT : return isLocallyReentrant(); case UMLPackage.SEND_SIGNAL_ACTION__LOCAL_POSTCONDITION : return getLocalPostconditions(); case UMLPackage.SEND_SIGNAL_ACTION__LOCAL_PRECONDITION : return getLocalPreconditions(); case UMLPackage.SEND_SIGNAL_ACTION__OUTPUT : return getOutputs(); case UMLPackage.SEND_SIGNAL_ACTION__ARGUMENT : return getArguments(); case UMLPackage.SEND_SIGNAL_ACTION__ON_PORT : if (resolve) return getOnPort(); return basicGetOnPort(); case UMLPackage.SEND_SIGNAL_ACTION__SIGNAL : if (resolve) return getSignal(); return basicGetSignal(); case UMLPackage.SEND_SIGNAL_ACTION__TARGET : if (resolve) return getTarget(); return basicGetTarget(); } return eDynamicGet(featureID, resolve, coreType); } /** * * * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case UMLPackage.SEND_SIGNAL_ACTION__EANNOTATIONS : getEAnnotations().clear(); getEAnnotations().addAll( (Collection) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__OWNED_COMMENT : getOwnedComments().clear(); getOwnedComments().addAll( (Collection) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__NAME : setName((String) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__NAME_EXPRESSION : setNameExpression((StringExpression) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__VISIBILITY : setVisibility((VisibilityKind) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__IS_LEAF : setIsLeaf((Boolean) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__ACTIVITY : setActivity((Activity) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__IN_INTERRUPTIBLE_REGION : getInInterruptibleRegions().clear(); getInInterruptibleRegions() .addAll( (Collection) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__IN_STRUCTURED_NODE : setInStructuredNode((StructuredActivityNode) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__INCOMING : getIncomings().clear(); getIncomings().addAll( (Collection) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__OUTGOING : getOutgoings().clear(); getOutgoings().addAll( (Collection) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__REDEFINED_NODE : getRedefinedNodes().clear(); getRedefinedNodes().addAll( (Collection) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__IN_PARTITION : getInPartitions().clear(); getInPartitions().addAll( (Collection) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__HANDLER : getHandlers().clear(); getHandlers().addAll( (Collection) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__IS_LOCALLY_REENTRANT : setIsLocallyReentrant((Boolean) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__LOCAL_POSTCONDITION : getLocalPostconditions().clear(); getLocalPostconditions().addAll( (Collection) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__LOCAL_PRECONDITION : getLocalPreconditions().clear(); getLocalPreconditions().addAll( (Collection) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__ARGUMENT : getArguments().clear(); getArguments() .addAll((Collection) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__ON_PORT : setOnPort((Port) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__SIGNAL : setSignal((Signal) newValue); return; case UMLPackage.SEND_SIGNAL_ACTION__TARGET : setTarget((InputPin) newValue); return; } eDynamicSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case UMLPackage.SEND_SIGNAL_ACTION__EANNOTATIONS : getEAnnotations().clear(); return; case UMLPackage.SEND_SIGNAL_ACTION__OWNED_COMMENT : getOwnedComments().clear(); return; case UMLPackage.SEND_SIGNAL_ACTION__NAME : unsetName(); return; case UMLPackage.SEND_SIGNAL_ACTION__NAME_EXPRESSION : setNameExpression((StringExpression) null); return; case UMLPackage.SEND_SIGNAL_ACTION__VISIBILITY : unsetVisibility(); return; case UMLPackage.SEND_SIGNAL_ACTION__IS_LEAF : setIsLeaf(IS_LEAF_EDEFAULT); return; case UMLPackage.SEND_SIGNAL_ACTION__ACTIVITY : setActivity((Activity) null); return; case UMLPackage.SEND_SIGNAL_ACTION__IN_INTERRUPTIBLE_REGION : getInInterruptibleRegions().clear(); return; case UMLPackage.SEND_SIGNAL_ACTION__IN_STRUCTURED_NODE : setInStructuredNode((StructuredActivityNode) null); return; case UMLPackage.SEND_SIGNAL_ACTION__INCOMING : getIncomings().clear(); return; case UMLPackage.SEND_SIGNAL_ACTION__OUTGOING : getOutgoings().clear(); return; case UMLPackage.SEND_SIGNAL_ACTION__REDEFINED_NODE : getRedefinedNodes().clear(); return; case UMLPackage.SEND_SIGNAL_ACTION__IN_PARTITION : getInPartitions().clear(); return; case UMLPackage.SEND_SIGNAL_ACTION__HANDLER : getHandlers().clear(); return; case UMLPackage.SEND_SIGNAL_ACTION__IS_LOCALLY_REENTRANT : setIsLocallyReentrant(IS_LOCALLY_REENTRANT_EDEFAULT); return; case UMLPackage.SEND_SIGNAL_ACTION__LOCAL_POSTCONDITION : getLocalPostconditions().clear(); return; case UMLPackage.SEND_SIGNAL_ACTION__LOCAL_PRECONDITION : getLocalPreconditions().clear(); return; case UMLPackage.SEND_SIGNAL_ACTION__ARGUMENT : getArguments().clear(); return; case UMLPackage.SEND_SIGNAL_ACTION__ON_PORT : setOnPort((Port) null); return; case UMLPackage.SEND_SIGNAL_ACTION__SIGNAL : setSignal((Signal) null); return; case UMLPackage.SEND_SIGNAL_ACTION__TARGET : setTarget((InputPin) null); return; } eDynamicUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case UMLPackage.SEND_SIGNAL_ACTION__EANNOTATIONS : return eAnnotations != null && !eAnnotations.isEmpty(); case UMLPackage.SEND_SIGNAL_ACTION__OWNED_COMMENT : return ownedComments != null && !ownedComments.isEmpty(); case UMLPackage.SEND_SIGNAL_ACTION__OWNED_ELEMENT : return isSetOwnedElements(); case UMLPackage.SEND_SIGNAL_ACTION__OWNER : return isSetOwner(); case UMLPackage.SEND_SIGNAL_ACTION__CLIENT_DEPENDENCY : return !getClientDependencies().isEmpty(); case UMLPackage.SEND_SIGNAL_ACTION__NAME : return isSetName(); case UMLPackage.SEND_SIGNAL_ACTION__NAME_EXPRESSION : return nameExpression != null; case UMLPackage.SEND_SIGNAL_ACTION__NAMESPACE : return isSetNamespace(); case UMLPackage.SEND_SIGNAL_ACTION__QUALIFIED_NAME : return QUALIFIED_NAME_EDEFAULT == null ? getQualifiedName() != null : !QUALIFIED_NAME_EDEFAULT.equals(getQualifiedName()); case UMLPackage.SEND_SIGNAL_ACTION__VISIBILITY : return isSetVisibility(); case UMLPackage.SEND_SIGNAL_ACTION__IS_LEAF : return ((eFlags & IS_LEAF_EFLAG) != 0) != IS_LEAF_EDEFAULT; case UMLPackage.SEND_SIGNAL_ACTION__REDEFINED_ELEMENT : return isSetRedefinedElements(); case UMLPackage.SEND_SIGNAL_ACTION__REDEFINITION_CONTEXT : return isSetRedefinitionContexts(); case UMLPackage.SEND_SIGNAL_ACTION__ACTIVITY : return basicGetActivity() != null; case UMLPackage.SEND_SIGNAL_ACTION__IN_GROUP : return isSetInGroups(); case UMLPackage.SEND_SIGNAL_ACTION__IN_INTERRUPTIBLE_REGION : return inInterruptibleRegions != null && !inInterruptibleRegions.isEmpty(); case UMLPackage.SEND_SIGNAL_ACTION__IN_STRUCTURED_NODE : return basicGetInStructuredNode() != null; case UMLPackage.SEND_SIGNAL_ACTION__INCOMING : return incomings != null && !incomings.isEmpty(); case UMLPackage.SEND_SIGNAL_ACTION__OUTGOING : return outgoings != null && !outgoings.isEmpty(); case UMLPackage.SEND_SIGNAL_ACTION__REDEFINED_NODE : return redefinedNodes != null && !redefinedNodes.isEmpty(); case UMLPackage.SEND_SIGNAL_ACTION__IN_PARTITION : return inPartitions != null && !inPartitions.isEmpty(); case UMLPackage.SEND_SIGNAL_ACTION__HANDLER : return handlers != null && !handlers.isEmpty(); case UMLPackage.SEND_SIGNAL_ACTION__CONTEXT : return basicGetContext() != null; case UMLPackage.SEND_SIGNAL_ACTION__INPUT : return isSetInputs(); case UMLPackage.SEND_SIGNAL_ACTION__IS_LOCALLY_REENTRANT : return ((eFlags & IS_LOCALLY_REENTRANT_EFLAG) != 0) != IS_LOCALLY_REENTRANT_EDEFAULT; case UMLPackage.SEND_SIGNAL_ACTION__LOCAL_POSTCONDITION : return localPostconditions != null && !localPostconditions.isEmpty(); case UMLPackage.SEND_SIGNAL_ACTION__LOCAL_PRECONDITION : return localPreconditions != null && !localPreconditions.isEmpty(); case UMLPackage.SEND_SIGNAL_ACTION__OUTPUT : return isSetOutputs(); case UMLPackage.SEND_SIGNAL_ACTION__ARGUMENT : return arguments != null && !arguments.isEmpty(); case UMLPackage.SEND_SIGNAL_ACTION__ON_PORT : return onPort != null; case UMLPackage.SEND_SIGNAL_ACTION__SIGNAL : return signal != null; case UMLPackage.SEND_SIGNAL_ACTION__TARGET : return target != null; } return eDynamicIsSet(featureID); } /** * * * @generated */ @Override @SuppressWarnings("unchecked") public Object eInvoke(int operationID, EList arguments) throws InvocationTargetException { switch (operationID) { case UMLPackage.SEND_SIGNAL_ACTION___GET_EANNOTATION__STRING : return getEAnnotation((String) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___VALIDATE_HAS_OWNER__DIAGNOSTICCHAIN_MAP : return validateHasOwner((DiagnosticChain) arguments.get(0), (Map) arguments.get(1)); case UMLPackage.SEND_SIGNAL_ACTION___VALIDATE_NOT_OWN_SELF__DIAGNOSTICCHAIN_MAP : return validateNotOwnSelf((DiagnosticChain) arguments.get(0), (Map) arguments.get(1)); case UMLPackage.SEND_SIGNAL_ACTION___ADD_KEYWORD__STRING : return addKeyword((String) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___APPLY_STEREOTYPE__STEREOTYPE : return applyStereotype((Stereotype) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___CREATE_EANNOTATION__STRING : return createEAnnotation((String) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___DESTROY : destroy(); return null; case UMLPackage.SEND_SIGNAL_ACTION___GET_KEYWORDS : return getKeywords(); case UMLPackage.SEND_SIGNAL_ACTION___GET_APPLICABLE_STEREOTYPE__STRING : return getApplicableStereotype((String) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___GET_APPLICABLE_STEREOTYPES : return getApplicableStereotypes(); case UMLPackage.SEND_SIGNAL_ACTION___GET_APPLIED_STEREOTYPE__STRING : return getAppliedStereotype((String) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___GET_APPLIED_STEREOTYPES : return getAppliedStereotypes(); case UMLPackage.SEND_SIGNAL_ACTION___GET_APPLIED_SUBSTEREOTYPE__STEREOTYPE_STRING : return getAppliedSubstereotype((Stereotype) arguments.get(0), (String) arguments.get(1)); case UMLPackage.SEND_SIGNAL_ACTION___GET_APPLIED_SUBSTEREOTYPES__STEREOTYPE : return getAppliedSubstereotypes((Stereotype) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___GET_MODEL : return getModel(); case UMLPackage.SEND_SIGNAL_ACTION___GET_NEAREST_PACKAGE : return getNearestPackage(); case UMLPackage.SEND_SIGNAL_ACTION___GET_RELATIONSHIPS : return getRelationships(); case UMLPackage.SEND_SIGNAL_ACTION___GET_RELATIONSHIPS__ECLASS : return getRelationships((EClass) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___GET_REQUIRED_STEREOTYPE__STRING : return getRequiredStereotype((String) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___GET_REQUIRED_STEREOTYPES : return getRequiredStereotypes(); case UMLPackage.SEND_SIGNAL_ACTION___GET_SOURCE_DIRECTED_RELATIONSHIPS : return getSourceDirectedRelationships(); case UMLPackage.SEND_SIGNAL_ACTION___GET_SOURCE_DIRECTED_RELATIONSHIPS__ECLASS : return getSourceDirectedRelationships((EClass) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___GET_STEREOTYPE_APPLICATION__STEREOTYPE : return getStereotypeApplication((Stereotype) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___GET_STEREOTYPE_APPLICATIONS : return getStereotypeApplications(); case UMLPackage.SEND_SIGNAL_ACTION___GET_TARGET_DIRECTED_RELATIONSHIPS : return getTargetDirectedRelationships(); case UMLPackage.SEND_SIGNAL_ACTION___GET_TARGET_DIRECTED_RELATIONSHIPS__ECLASS : return getTargetDirectedRelationships((EClass) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___GET_VALUE__STEREOTYPE_STRING : return getValue((Stereotype) arguments.get(0), (String) arguments.get(1)); case UMLPackage.SEND_SIGNAL_ACTION___HAS_KEYWORD__STRING : return hasKeyword((String) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___HAS_VALUE__STEREOTYPE_STRING : return hasValue((Stereotype) arguments.get(0), (String) arguments.get(1)); case UMLPackage.SEND_SIGNAL_ACTION___IS_STEREOTYPE_APPLICABLE__STEREOTYPE : return isStereotypeApplicable((Stereotype) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___IS_STEREOTYPE_APPLIED__STEREOTYPE : return isStereotypeApplied((Stereotype) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___IS_STEREOTYPE_REQUIRED__STEREOTYPE : return isStereotypeRequired((Stereotype) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___REMOVE_KEYWORD__STRING : return removeKeyword((String) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___SET_VALUE__STEREOTYPE_STRING_OBJECT : setValue((Stereotype) arguments.get(0), (String) arguments.get(1), arguments.get(2)); return null; case UMLPackage.SEND_SIGNAL_ACTION___UNAPPLY_STEREOTYPE__STEREOTYPE : return unapplyStereotype((Stereotype) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___ALL_OWNED_ELEMENTS : return allOwnedElements(); case UMLPackage.SEND_SIGNAL_ACTION___MUST_BE_OWNED : return mustBeOwned(); case UMLPackage.SEND_SIGNAL_ACTION___VALIDATE_VISIBILITY_NEEDS_OWNERSHIP__DIAGNOSTICCHAIN_MAP : return validateVisibilityNeedsOwnership( (DiagnosticChain) arguments.get(0), (Map) arguments.get(1)); case UMLPackage.SEND_SIGNAL_ACTION___VALIDATE_HAS_QUALIFIED_NAME__DIAGNOSTICCHAIN_MAP : return validateHasQualifiedName( (DiagnosticChain) arguments.get(0), (Map) arguments.get(1)); case UMLPackage.SEND_SIGNAL_ACTION___VALIDATE_HAS_NO_QUALIFIED_NAME__DIAGNOSTICCHAIN_MAP : return validateHasNoQualifiedName( (DiagnosticChain) arguments.get(0), (Map) arguments.get(1)); case UMLPackage.SEND_SIGNAL_ACTION___CREATE_DEPENDENCY__NAMEDELEMENT : return createDependency((NamedElement) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___CREATE_USAGE__NAMEDELEMENT : return createUsage((NamedElement) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___GET_LABEL : return getLabel(); case UMLPackage.SEND_SIGNAL_ACTION___GET_LABEL__BOOLEAN : return getLabel((Boolean) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___GET_NAMESPACE : return getNamespace(); case UMLPackage.SEND_SIGNAL_ACTION___ALL_NAMESPACES : return allNamespaces(); case UMLPackage.SEND_SIGNAL_ACTION___ALL_OWNING_PACKAGES : return allOwningPackages(); case UMLPackage.SEND_SIGNAL_ACTION___IS_DISTINGUISHABLE_FROM__NAMEDELEMENT_NAMESPACE : return isDistinguishableFrom((NamedElement) arguments.get(0), (Namespace) arguments.get(1)); case UMLPackage.SEND_SIGNAL_ACTION___GET_QUALIFIED_NAME : return getQualifiedName(); case UMLPackage.SEND_SIGNAL_ACTION___SEPARATOR : return separator(); case UMLPackage.SEND_SIGNAL_ACTION___GET_CLIENT_DEPENDENCIES : return getClientDependencies(); case UMLPackage.SEND_SIGNAL_ACTION___VALIDATE_REDEFINITION_CONSISTENT__DIAGNOSTICCHAIN_MAP : return validateRedefinitionConsistent( (DiagnosticChain) arguments.get(0), (Map) arguments.get(1)); case UMLPackage.SEND_SIGNAL_ACTION___VALIDATE_NON_LEAF_REDEFINITION__DIAGNOSTICCHAIN_MAP : return validateNonLeafRedefinition( (DiagnosticChain) arguments.get(0), (Map) arguments.get(1)); case UMLPackage.SEND_SIGNAL_ACTION___VALIDATE_REDEFINITION_CONTEXT_VALID__DIAGNOSTICCHAIN_MAP : return validateRedefinitionContextValid( (DiagnosticChain) arguments.get(0), (Map) arguments.get(1)); case UMLPackage.SEND_SIGNAL_ACTION___IS_CONSISTENT_WITH__REDEFINABLEELEMENT : return isConsistentWith((RedefinableElement) arguments.get(0)); case UMLPackage.SEND_SIGNAL_ACTION___IS_REDEFINITION_CONTEXT_VALID__REDEFINABLEELEMENT : return isRedefinitionContextValid((RedefinableElement) arguments .get(0)); case UMLPackage.SEND_SIGNAL_ACTION___CONTAINING_ACTIVITY : return containingActivity(); case UMLPackage.SEND_SIGNAL_ACTION___GET_CONTEXT : return getContext(); case UMLPackage.SEND_SIGNAL_ACTION___ALL_ACTIONS : return allActions(); case UMLPackage.SEND_SIGNAL_ACTION___ALL_OWNED_NODES : return allOwnedNodes(); case UMLPackage.SEND_SIGNAL_ACTION___CONTAINING_BEHAVIOR : return containingBehavior(); case UMLPackage.SEND_SIGNAL_ACTION___VALIDATE_TYPE_ORDERING_MULTIPLICITY__DIAGNOSTICCHAIN_MAP : return validateTypeOrderingMultiplicity( (DiagnosticChain) arguments.get(0), (Map) arguments.get(1)); case UMLPackage.SEND_SIGNAL_ACTION___VALIDATE_NUMBER_ORDER__DIAGNOSTICCHAIN_MAP : return validateNumberOrder((DiagnosticChain) arguments.get(0), (Map) arguments.get(1)); case UMLPackage.SEND_SIGNAL_ACTION___VALIDATE_TYPE_TARGET_PIN__DIAGNOSTICCHAIN_MAP : return validateTypeTargetPin( (DiagnosticChain) arguments.get(0), (Map) arguments.get(1)); } return eDynamicInvoke(operationID, arguments); } /** * The array of subset feature identifiers for the '{@link #getInputs() Input}' reference list. * * * @see #getInputs() * @generated * @ordered */ protected static final int[] INPUT_ESUBSETS = new int[]{ UMLPackage.SEND_SIGNAL_ACTION__ARGUMENT, UMLPackage.SEND_SIGNAL_ACTION__TARGET}; /** * * * @generated */ @Override public boolean isSetInputs() { return super.isSetInputs() || eIsSet(UMLPackage.SEND_SIGNAL_ACTION__TARGET); } } //SendSignalActionImpl




© 2015 - 2025 Weber Informatics LLC | Privacy Policy