blob: 65cc93169df5a692a4d839f5b87f058e9f9738d5 [file] [log] [blame]
/*
* Copyright (c) 2005, 2018 IBM Corporation, Embarcadero Technologies, CEA, and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - initial API and implementation
* Kenn Hussey (Embarcadero Technologies) - 204200
* Kenn Hussey - 286329, 323181, 535301
* Kenn Hussey (CEA) - 327039, 351774, 418466, 451350, 485756
*
*/
package org.eclipse.uml2.uml.cdo.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.Action;
import org.eclipse.uml2.uml.ActionInputPin;
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.Behavior;
import org.eclipse.uml2.uml.Comment;
import org.eclipse.uml2.uml.Element;
import org.eclipse.uml2.uml.InterruptibleActivityRegion;
import org.eclipse.uml2.uml.MultiplicityElement;
import org.eclipse.uml2.uml.NamedElement;
import org.eclipse.uml2.uml.Namespace;
import org.eclipse.uml2.uml.ObjectNodeOrderingKind;
import org.eclipse.uml2.uml.RedefinableElement;
import org.eclipse.uml2.uml.State;
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.ValueSpecification;
import org.eclipse.uml2.uml.VisibilityKind;
import org.eclipse.uml2.uml.internal.operations.ActionInputPinOperations;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Action Input Pin</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.uml2.uml.cdo.internal.impl.ActionInputPinImpl#getOwnedElements <em>Owned Element</em>}</li>
* <li>{@link org.eclipse.uml2.uml.cdo.internal.impl.ActionInputPinImpl#getFromAction <em>From Action</em>}</li>
* </ul>
*
* @generated
*/
public class ActionInputPinImpl
extends InputPinImpl
implements ActionInputPin {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ActionInputPinImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return UMLPackage.Literals.ACTION_INPUT_PIN;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public EList<Element> getOwnedElements() {
CacheAdapter cache = getCacheAdapter();
if (cache != null) {
Resource eResource = eResource();
@SuppressWarnings("unchecked")
EList<Element> ownedElements = (EList<Element>) 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>(Element.class, this, UMLPackage.ACTION_INPUT_PIN__OWNED_ELEMENT, OWNED_ELEMENT_ESUBSETS));
}
return ownedElements;
}
return new DerivedUnionEObjectEList<Element>(Element.class, this, UMLPackage.ACTION_INPUT_PIN__OWNED_ELEMENT, OWNED_ELEMENT_ESUBSETS);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Action getFromAction() {
return (Action) eDynamicGet(UMLPackage.ACTION_INPUT_PIN__FROM_ACTION - ESTATIC_FEATURE_COUNT, UMLPackage.Literals.ACTION_INPUT_PIN__FROM_ACTION, true, true);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Action basicGetFromAction() {
return (Action) eDynamicGet(UMLPackage.ACTION_INPUT_PIN__FROM_ACTION - ESTATIC_FEATURE_COUNT, UMLPackage.Literals.ACTION_INPUT_PIN__FROM_ACTION, false, true);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetFromAction(Action newFromAction,
NotificationChain msgs) {
msgs = eDynamicInverseAdd((InternalEObject) newFromAction, UMLPackage.ACTION_INPUT_PIN__FROM_ACTION, msgs);
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setFromAction(Action newFromAction) {
eDynamicSet(UMLPackage.ACTION_INPUT_PIN__FROM_ACTION - ESTATIC_FEATURE_COUNT, UMLPackage.Literals.ACTION_INPUT_PIN__FROM_ACTION, newFromAction);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Action createFromAction(String name, EClass eClass) {
Action newFromAction = (Action) create(eClass);
setFromAction(newFromAction);
if (name != null)
newFromAction.setName(name);
return newFromAction;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateOneOutputPin(DiagnosticChain diagnostics,
Map<Object, Object> context) {
return ActionInputPinOperations.validateOneOutputPin(this, diagnostics, context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateNoControlOrObjectFlow(DiagnosticChain diagnostics,
Map<Object, Object> context) {
return ActionInputPinOperations.validateNoControlOrObjectFlow(this, diagnostics, context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateInputPin(DiagnosticChain diagnostics,
Map<Object, Object> context) {
return ActionInputPinOperations.validateInputPin(this, diagnostics, context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd,
int featureID, NotificationChain msgs) {
switch (featureID) {
case UMLPackage.ACTION_INPUT_PIN__EANNOTATIONS:
return ((InternalEList<?>) getEAnnotations()).basicRemove(otherEnd, msgs);
case UMLPackage.ACTION_INPUT_PIN__OWNED_COMMENT:
return ((InternalEList<?>) getOwnedComments()).basicRemove(otherEnd, msgs);
case UMLPackage.ACTION_INPUT_PIN__NAME_EXPRESSION:
return basicSetNameExpression(null, msgs);
case UMLPackage.ACTION_INPUT_PIN__IN_INTERRUPTIBLE_REGION:
return ((InternalEList<?>) getInInterruptibleRegions()).basicRemove(otherEnd, msgs);
case UMLPackage.ACTION_INPUT_PIN__IN_STRUCTURED_NODE:
return basicSetInStructuredNode(null, msgs);
case UMLPackage.ACTION_INPUT_PIN__INCOMING:
return ((InternalEList<?>) getIncomings()).basicRemove(otherEnd, msgs);
case UMLPackage.ACTION_INPUT_PIN__OUTGOING:
return ((InternalEList<?>) getOutgoings()).basicRemove(otherEnd, msgs);
case UMLPackage.ACTION_INPUT_PIN__IN_PARTITION:
return ((InternalEList<?>) getInPartitions()).basicRemove(otherEnd, msgs);
case UMLPackage.ACTION_INPUT_PIN__UPPER_BOUND:
return basicSetUpperBound(null, msgs);
case UMLPackage.ACTION_INPUT_PIN__LOWER_VALUE:
return basicSetLowerValue(null, msgs);
case UMLPackage.ACTION_INPUT_PIN__UPPER_VALUE:
return basicSetUpperValue(null, msgs);
case UMLPackage.ACTION_INPUT_PIN__FROM_ACTION:
return basicSetFromAction(null, msgs);
}
return eDynamicInverseRemove(otherEnd, featureID, msgs);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case UMLPackage.ACTION_INPUT_PIN__EANNOTATIONS:
return getEAnnotations();
case UMLPackage.ACTION_INPUT_PIN__OWNED_COMMENT:
return getOwnedComments();
case UMLPackage.ACTION_INPUT_PIN__OWNED_ELEMENT:
return getOwnedElements();
case UMLPackage.ACTION_INPUT_PIN__OWNER:
if (resolve)
return getOwner();
return basicGetOwner();
case UMLPackage.ACTION_INPUT_PIN__CLIENT_DEPENDENCY:
return getClientDependencies();
case UMLPackage.ACTION_INPUT_PIN__NAME:
return getName();
case UMLPackage.ACTION_INPUT_PIN__NAME_EXPRESSION:
if (resolve)
return getNameExpression();
return basicGetNameExpression();
case UMLPackage.ACTION_INPUT_PIN__NAMESPACE:
if (resolve)
return getNamespace();
return basicGetNamespace();
case UMLPackage.ACTION_INPUT_PIN__QUALIFIED_NAME:
return getQualifiedName();
case UMLPackage.ACTION_INPUT_PIN__VISIBILITY:
return getVisibility();
case UMLPackage.ACTION_INPUT_PIN__IS_LEAF:
return isLeaf();
case UMLPackage.ACTION_INPUT_PIN__REDEFINED_ELEMENT:
return getRedefinedElements();
case UMLPackage.ACTION_INPUT_PIN__REDEFINITION_CONTEXT:
return getRedefinitionContexts();
case UMLPackage.ACTION_INPUT_PIN__ACTIVITY:
if (resolve)
return getActivity();
return basicGetActivity();
case UMLPackage.ACTION_INPUT_PIN__IN_GROUP:
return getInGroups();
case UMLPackage.ACTION_INPUT_PIN__IN_INTERRUPTIBLE_REGION:
return getInInterruptibleRegions();
case UMLPackage.ACTION_INPUT_PIN__IN_STRUCTURED_NODE:
if (resolve)
return getInStructuredNode();
return basicGetInStructuredNode();
case UMLPackage.ACTION_INPUT_PIN__INCOMING:
return getIncomings();
case UMLPackage.ACTION_INPUT_PIN__OUTGOING:
return getOutgoings();
case UMLPackage.ACTION_INPUT_PIN__REDEFINED_NODE:
return getRedefinedNodes();
case UMLPackage.ACTION_INPUT_PIN__IN_PARTITION:
return getInPartitions();
case UMLPackage.ACTION_INPUT_PIN__TYPE:
if (resolve)
return getType();
return basicGetType();
case UMLPackage.ACTION_INPUT_PIN__IN_STATE:
return getInStates();
case UMLPackage.ACTION_INPUT_PIN__IS_CONTROL_TYPE:
return isControlType();
case UMLPackage.ACTION_INPUT_PIN__ORDERING:
return getOrdering();
case UMLPackage.ACTION_INPUT_PIN__SELECTION:
if (resolve)
return getSelection();
return basicGetSelection();
case UMLPackage.ACTION_INPUT_PIN__UPPER_BOUND:
if (resolve)
return getUpperBound();
return basicGetUpperBound();
case UMLPackage.ACTION_INPUT_PIN__IS_ORDERED:
return isOrdered();
case UMLPackage.ACTION_INPUT_PIN__IS_UNIQUE:
return isUnique();
case UMLPackage.ACTION_INPUT_PIN__LOWER:
return getLower();
case UMLPackage.ACTION_INPUT_PIN__LOWER_VALUE:
if (resolve)
return getLowerValue();
return basicGetLowerValue();
case UMLPackage.ACTION_INPUT_PIN__UPPER:
return getUpper();
case UMLPackage.ACTION_INPUT_PIN__UPPER_VALUE:
if (resolve)
return getUpperValue();
return basicGetUpperValue();
case UMLPackage.ACTION_INPUT_PIN__IS_CONTROL:
return isControl();
case UMLPackage.ACTION_INPUT_PIN__FROM_ACTION:
if (resolve)
return getFromAction();
return basicGetFromAction();
}
return eDynamicGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case UMLPackage.ACTION_INPUT_PIN__EANNOTATIONS:
getEAnnotations().clear();
getEAnnotations().addAll((Collection<? extends EAnnotation>) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__OWNED_COMMENT:
getOwnedComments().clear();
getOwnedComments().addAll((Collection<? extends Comment>) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__NAME:
setName((String) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__NAME_EXPRESSION:
setNameExpression((StringExpression) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__VISIBILITY:
setVisibility((VisibilityKind) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__IS_LEAF:
setIsLeaf((Boolean) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__ACTIVITY:
setActivity((Activity) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__IN_INTERRUPTIBLE_REGION:
getInInterruptibleRegions().clear();
getInInterruptibleRegions().addAll((Collection<? extends InterruptibleActivityRegion>) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__IN_STRUCTURED_NODE:
setInStructuredNode((StructuredActivityNode) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__INCOMING:
getIncomings().clear();
getIncomings().addAll((Collection<? extends ActivityEdge>) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__OUTGOING:
getOutgoings().clear();
getOutgoings().addAll((Collection<? extends ActivityEdge>) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__REDEFINED_NODE:
getRedefinedNodes().clear();
getRedefinedNodes().addAll((Collection<? extends ActivityNode>) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__IN_PARTITION:
getInPartitions().clear();
getInPartitions().addAll((Collection<? extends ActivityPartition>) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__TYPE:
setType((Type) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__IN_STATE:
getInStates().clear();
getInStates().addAll((Collection<? extends State>) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__IS_CONTROL_TYPE:
setIsControlType((Boolean) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__ORDERING:
setOrdering((ObjectNodeOrderingKind) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__SELECTION:
setSelection((Behavior) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__UPPER_BOUND:
setUpperBound((ValueSpecification) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__IS_ORDERED:
setIsOrdered((Boolean) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__IS_UNIQUE:
setIsUnique((Boolean) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__LOWER:
setLower((Integer) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__LOWER_VALUE:
setLowerValue((ValueSpecification) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__UPPER:
setUpper((Integer) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__UPPER_VALUE:
setUpperValue((ValueSpecification) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__IS_CONTROL:
setIsControl((Boolean) newValue);
return;
case UMLPackage.ACTION_INPUT_PIN__FROM_ACTION:
setFromAction((Action) newValue);
return;
}
eDynamicSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case UMLPackage.ACTION_INPUT_PIN__EANNOTATIONS:
getEAnnotations().clear();
return;
case UMLPackage.ACTION_INPUT_PIN__OWNED_COMMENT:
getOwnedComments().clear();
return;
case UMLPackage.ACTION_INPUT_PIN__NAME:
unsetName();
return;
case UMLPackage.ACTION_INPUT_PIN__NAME_EXPRESSION:
setNameExpression((StringExpression) null);
return;
case UMLPackage.ACTION_INPUT_PIN__VISIBILITY:
unsetVisibility();
return;
case UMLPackage.ACTION_INPUT_PIN__IS_LEAF:
setIsLeaf(IS_LEAF_EDEFAULT);
return;
case UMLPackage.ACTION_INPUT_PIN__ACTIVITY:
setActivity((Activity) null);
return;
case UMLPackage.ACTION_INPUT_PIN__IN_INTERRUPTIBLE_REGION:
getInInterruptibleRegions().clear();
return;
case UMLPackage.ACTION_INPUT_PIN__IN_STRUCTURED_NODE:
setInStructuredNode((StructuredActivityNode) null);
return;
case UMLPackage.ACTION_INPUT_PIN__INCOMING:
getIncomings().clear();
return;
case UMLPackage.ACTION_INPUT_PIN__OUTGOING:
getOutgoings().clear();
return;
case UMLPackage.ACTION_INPUT_PIN__REDEFINED_NODE:
getRedefinedNodes().clear();
return;
case UMLPackage.ACTION_INPUT_PIN__IN_PARTITION:
getInPartitions().clear();
return;
case UMLPackage.ACTION_INPUT_PIN__TYPE:
setType((Type) null);
return;
case UMLPackage.ACTION_INPUT_PIN__IN_STATE:
getInStates().clear();
return;
case UMLPackage.ACTION_INPUT_PIN__IS_CONTROL_TYPE:
setIsControlType(IS_CONTROL_TYPE_EDEFAULT);
return;
case UMLPackage.ACTION_INPUT_PIN__ORDERING:
setOrdering(ORDERING_EDEFAULT);
return;
case UMLPackage.ACTION_INPUT_PIN__SELECTION:
setSelection((Behavior) null);
return;
case UMLPackage.ACTION_INPUT_PIN__UPPER_BOUND:
setUpperBound((ValueSpecification) null);
return;
case UMLPackage.ACTION_INPUT_PIN__IS_ORDERED:
setIsOrdered(IS_ORDERED_EDEFAULT);
return;
case UMLPackage.ACTION_INPUT_PIN__IS_UNIQUE:
setIsUnique(IS_UNIQUE_EDEFAULT);
return;
case UMLPackage.ACTION_INPUT_PIN__LOWER:
setLower(LOWER_EDEFAULT);
return;
case UMLPackage.ACTION_INPUT_PIN__LOWER_VALUE:
setLowerValue((ValueSpecification) null);
return;
case UMLPackage.ACTION_INPUT_PIN__UPPER:
setUpper(UPPER_EDEFAULT);
return;
case UMLPackage.ACTION_INPUT_PIN__UPPER_VALUE:
setUpperValue((ValueSpecification) null);
return;
case UMLPackage.ACTION_INPUT_PIN__IS_CONTROL:
setIsControl(IS_CONTROL_EDEFAULT);
return;
case UMLPackage.ACTION_INPUT_PIN__FROM_ACTION:
setFromAction((Action) null);
return;
}
eDynamicUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case UMLPackage.ACTION_INPUT_PIN__EANNOTATIONS:
return !getEAnnotations().isEmpty();
case UMLPackage.ACTION_INPUT_PIN__OWNED_COMMENT:
return !getOwnedComments().isEmpty();
case UMLPackage.ACTION_INPUT_PIN__OWNED_ELEMENT:
return isSetOwnedElements();
case UMLPackage.ACTION_INPUT_PIN__OWNER:
return isSetOwner();
case UMLPackage.ACTION_INPUT_PIN__CLIENT_DEPENDENCY:
return !getClientDependencies().isEmpty();
case UMLPackage.ACTION_INPUT_PIN__NAME:
return isSetName();
case UMLPackage.ACTION_INPUT_PIN__NAME_EXPRESSION:
return basicGetNameExpression() != null;
case UMLPackage.ACTION_INPUT_PIN__NAMESPACE:
return isSetNamespace();
case UMLPackage.ACTION_INPUT_PIN__QUALIFIED_NAME:
return QUALIFIED_NAME_EDEFAULT == null ? getQualifiedName() != null : !QUALIFIED_NAME_EDEFAULT.equals(getQualifiedName());
case UMLPackage.ACTION_INPUT_PIN__VISIBILITY:
return isSetVisibility();
case UMLPackage.ACTION_INPUT_PIN__IS_LEAF:
return isLeaf() != IS_LEAF_EDEFAULT;
case UMLPackage.ACTION_INPUT_PIN__REDEFINED_ELEMENT:
return isSetRedefinedElements();
case UMLPackage.ACTION_INPUT_PIN__REDEFINITION_CONTEXT:
return isSetRedefinitionContexts();
case UMLPackage.ACTION_INPUT_PIN__ACTIVITY:
return basicGetActivity() != null;
case UMLPackage.ACTION_INPUT_PIN__IN_GROUP:
return isSetInGroups();
case UMLPackage.ACTION_INPUT_PIN__IN_INTERRUPTIBLE_REGION:
return !getInInterruptibleRegions().isEmpty();
case UMLPackage.ACTION_INPUT_PIN__IN_STRUCTURED_NODE:
return basicGetInStructuredNode() != null;
case UMLPackage.ACTION_INPUT_PIN__INCOMING:
return !getIncomings().isEmpty();
case UMLPackage.ACTION_INPUT_PIN__OUTGOING:
return !getOutgoings().isEmpty();
case UMLPackage.ACTION_INPUT_PIN__REDEFINED_NODE:
return !getRedefinedNodes().isEmpty();
case UMLPackage.ACTION_INPUT_PIN__IN_PARTITION:
return !getInPartitions().isEmpty();
case UMLPackage.ACTION_INPUT_PIN__TYPE:
return basicGetType() != null;
case UMLPackage.ACTION_INPUT_PIN__IN_STATE:
return !getInStates().isEmpty();
case UMLPackage.ACTION_INPUT_PIN__IS_CONTROL_TYPE:
return isControlType() != IS_CONTROL_TYPE_EDEFAULT;
case UMLPackage.ACTION_INPUT_PIN__ORDERING:
return getOrdering() != ORDERING_EDEFAULT;
case UMLPackage.ACTION_INPUT_PIN__SELECTION:
return basicGetSelection() != null;
case UMLPackage.ACTION_INPUT_PIN__UPPER_BOUND:
return basicGetUpperBound() != null;
case UMLPackage.ACTION_INPUT_PIN__IS_ORDERED:
return isOrdered() != IS_ORDERED_EDEFAULT;
case UMLPackage.ACTION_INPUT_PIN__IS_UNIQUE:
return isUnique() != IS_UNIQUE_EDEFAULT;
case UMLPackage.ACTION_INPUT_PIN__LOWER:
return getLower() != LOWER_EDEFAULT;
case UMLPackage.ACTION_INPUT_PIN__LOWER_VALUE:
return basicGetLowerValue() != null;
case UMLPackage.ACTION_INPUT_PIN__UPPER:
return getUpper() != UPPER_EDEFAULT;
case UMLPackage.ACTION_INPUT_PIN__UPPER_VALUE:
return basicGetUpperValue() != null;
case UMLPackage.ACTION_INPUT_PIN__IS_CONTROL:
return isControl() != IS_CONTROL_EDEFAULT;
case UMLPackage.ACTION_INPUT_PIN__FROM_ACTION:
return basicGetFromAction() != null;
}
return eDynamicIsSet(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
@SuppressWarnings("unchecked")
public Object eInvoke(int operationID, EList<?> arguments)
throws InvocationTargetException {
switch (operationID) {
case UMLPackage.ACTION_INPUT_PIN___GET_EANNOTATION__STRING:
return getEAnnotation((String) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_HAS_OWNER__DIAGNOSTICCHAIN_MAP:
return validateHasOwner((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_NOT_OWN_SELF__DIAGNOSTICCHAIN_MAP:
return validateNotOwnSelf((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___ADD_KEYWORD__STRING:
return addKeyword((String) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___APPLY_STEREOTYPE__STEREOTYPE:
return applyStereotype((Stereotype) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___CREATE_EANNOTATION__STRING:
return createEAnnotation((String) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___DESTROY:
destroy();
return null;
case UMLPackage.ACTION_INPUT_PIN___GET_KEYWORDS:
return getKeywords();
case UMLPackage.ACTION_INPUT_PIN___GET_APPLICABLE_STEREOTYPE__STRING:
return getApplicableStereotype((String) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___GET_APPLICABLE_STEREOTYPES:
return getApplicableStereotypes();
case UMLPackage.ACTION_INPUT_PIN___GET_APPLIED_STEREOTYPE__STRING:
return getAppliedStereotype((String) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___GET_APPLIED_STEREOTYPES:
return getAppliedStereotypes();
case UMLPackage.ACTION_INPUT_PIN___GET_APPLIED_SUBSTEREOTYPE__STEREOTYPE_STRING:
return getAppliedSubstereotype((Stereotype) arguments.get(0), (String) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___GET_APPLIED_SUBSTEREOTYPES__STEREOTYPE:
return getAppliedSubstereotypes((Stereotype) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___GET_MODEL:
return getModel();
case UMLPackage.ACTION_INPUT_PIN___GET_NEAREST_PACKAGE:
return getNearestPackage();
case UMLPackage.ACTION_INPUT_PIN___GET_RELATIONSHIPS:
return getRelationships();
case UMLPackage.ACTION_INPUT_PIN___GET_RELATIONSHIPS__ECLASS:
return getRelationships((EClass) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___GET_REQUIRED_STEREOTYPE__STRING:
return getRequiredStereotype((String) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___GET_REQUIRED_STEREOTYPES:
return getRequiredStereotypes();
case UMLPackage.ACTION_INPUT_PIN___GET_SOURCE_DIRECTED_RELATIONSHIPS:
return getSourceDirectedRelationships();
case UMLPackage.ACTION_INPUT_PIN___GET_SOURCE_DIRECTED_RELATIONSHIPS__ECLASS:
return getSourceDirectedRelationships((EClass) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___GET_STEREOTYPE_APPLICATION__STEREOTYPE:
return getStereotypeApplication((Stereotype) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___GET_STEREOTYPE_APPLICATIONS:
return getStereotypeApplications();
case UMLPackage.ACTION_INPUT_PIN___GET_TARGET_DIRECTED_RELATIONSHIPS:
return getTargetDirectedRelationships();
case UMLPackage.ACTION_INPUT_PIN___GET_TARGET_DIRECTED_RELATIONSHIPS__ECLASS:
return getTargetDirectedRelationships((EClass) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___GET_VALUE__STEREOTYPE_STRING:
return getValue((Stereotype) arguments.get(0), (String) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___HAS_KEYWORD__STRING:
return hasKeyword((String) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___HAS_VALUE__STEREOTYPE_STRING:
return hasValue((Stereotype) arguments.get(0), (String) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___IS_STEREOTYPE_APPLICABLE__STEREOTYPE:
return isStereotypeApplicable((Stereotype) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___IS_STEREOTYPE_APPLIED__STEREOTYPE:
return isStereotypeApplied((Stereotype) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___IS_STEREOTYPE_REQUIRED__STEREOTYPE:
return isStereotypeRequired((Stereotype) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___REMOVE_KEYWORD__STRING:
return removeKeyword((String) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___SET_VALUE__STEREOTYPE_STRING_OBJECT:
setValue((Stereotype) arguments.get(0), (String) arguments.get(1), arguments.get(2));
return null;
case UMLPackage.ACTION_INPUT_PIN___UNAPPLY_STEREOTYPE__STEREOTYPE:
return unapplyStereotype((Stereotype) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___ALL_OWNED_ELEMENTS:
return allOwnedElements();
case UMLPackage.ACTION_INPUT_PIN___MUST_BE_OWNED:
return mustBeOwned();
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_VISIBILITY_NEEDS_OWNERSHIP__DIAGNOSTICCHAIN_MAP:
return validateVisibilityNeedsOwnership((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_HAS_QUALIFIED_NAME__DIAGNOSTICCHAIN_MAP:
return validateHasQualifiedName((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_HAS_NO_QUALIFIED_NAME__DIAGNOSTICCHAIN_MAP:
return validateHasNoQualifiedName((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___CREATE_DEPENDENCY__NAMEDELEMENT:
return createDependency((NamedElement) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___CREATE_USAGE__NAMEDELEMENT:
return createUsage((NamedElement) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___GET_LABEL:
return getLabel();
case UMLPackage.ACTION_INPUT_PIN___GET_LABEL__BOOLEAN:
return getLabel((Boolean) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___GET_NAMESPACE:
return getNamespace();
case UMLPackage.ACTION_INPUT_PIN___ALL_NAMESPACES:
return allNamespaces();
case UMLPackage.ACTION_INPUT_PIN___ALL_OWNING_PACKAGES:
return allOwningPackages();
case UMLPackage.ACTION_INPUT_PIN___IS_DISTINGUISHABLE_FROM__NAMEDELEMENT_NAMESPACE:
return isDistinguishableFrom((NamedElement) arguments.get(0), (Namespace) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___GET_QUALIFIED_NAME:
return getQualifiedName();
case UMLPackage.ACTION_INPUT_PIN___SEPARATOR:
return separator();
case UMLPackage.ACTION_INPUT_PIN___GET_CLIENT_DEPENDENCIES:
return getClientDependencies();
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_REDEFINITION_CONSISTENT__DIAGNOSTICCHAIN_MAP:
return validateRedefinitionConsistent((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_NON_LEAF_REDEFINITION__DIAGNOSTICCHAIN_MAP:
return validateNonLeafRedefinition((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_REDEFINITION_CONTEXT_VALID__DIAGNOSTICCHAIN_MAP:
return validateRedefinitionContextValid((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___IS_CONSISTENT_WITH__REDEFINABLEELEMENT:
return isConsistentWith((RedefinableElement) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___IS_REDEFINITION_CONTEXT_VALID__REDEFINABLEELEMENT:
return isRedefinitionContextValid((RedefinableElement) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___CONTAINING_ACTIVITY:
return containingActivity();
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_INPUT_OUTPUT_PARAMETER__DIAGNOSTICCHAIN_MAP:
return validateInputOutputParameter((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_SELECTION_BEHAVIOR__DIAGNOSTICCHAIN_MAP:
return validateSelectionBehavior((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_OBJECT_FLOW_EDGES__DIAGNOSTICCHAIN_MAP:
return validateObjectFlowEdges((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_UPPER_GE_LOWER__DIAGNOSTICCHAIN_MAP:
return validateUpperGeLower((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_LOWER_GE0__DIAGNOSTICCHAIN_MAP:
return validateLowerGe0((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_VALUE_SPECIFICATION_NO_SIDE_EFFECTS__DIAGNOSTICCHAIN_MAP:
return validateValueSpecificationNoSideEffects((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_VALUE_SPECIFICATION_CONSTANT__DIAGNOSTICCHAIN_MAP:
return validateValueSpecificationConstant((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_LOWER_IS_INTEGER__DIAGNOSTICCHAIN_MAP:
return validateLowerIsInteger((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_UPPER_IS_UNLIMITED_NATURAL__DIAGNOSTICCHAIN_MAP:
return validateUpperIsUnlimitedNatural((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___SET_LOWER__INT:
setLower((Integer) arguments.get(0));
return null;
case UMLPackage.ACTION_INPUT_PIN___SET_UPPER__INT:
setUpper((Integer) arguments.get(0));
return null;
case UMLPackage.ACTION_INPUT_PIN___COMPATIBLE_WITH__MULTIPLICITYELEMENT:
return compatibleWith((MultiplicityElement) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___INCLUDES_MULTIPLICITY__MULTIPLICITYELEMENT:
return includesMultiplicity((MultiplicityElement) arguments.get(0));
case UMLPackage.ACTION_INPUT_PIN___IS__INT_INT:
return is((Integer) arguments.get(0), (Integer) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___IS_MULTIVALUED:
return isMultivalued();
case UMLPackage.ACTION_INPUT_PIN___GET_LOWER:
return getLower();
case UMLPackage.ACTION_INPUT_PIN___LOWER_BOUND:
return lowerBound();
case UMLPackage.ACTION_INPUT_PIN___GET_UPPER:
return getUpper();
case UMLPackage.ACTION_INPUT_PIN___UPPER_BOUND:
return upperBound();
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_CONTROL_PINS__DIAGNOSTICCHAIN_MAP:
return validateControlPins((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_NOT_UNIQUE__DIAGNOSTICCHAIN_MAP:
return validateNotUnique((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_OUTGOING_EDGES_STRUCTURED_ONLY__DIAGNOSTICCHAIN_MAP:
return validateOutgoingEdgesStructuredOnly((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_INPUT_PIN__DIAGNOSTICCHAIN_MAP:
return validateInputPin((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_ONE_OUTPUT_PIN__DIAGNOSTICCHAIN_MAP:
return validateOneOutputPin((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
case UMLPackage.ACTION_INPUT_PIN___VALIDATE_NO_CONTROL_OR_OBJECT_FLOW__DIAGNOSTICCHAIN_MAP:
return validateNoControlOrObjectFlow((DiagnosticChain) arguments.get(0), (Map<Object, Object>) arguments.get(1));
}
return eDynamicInvoke(operationID, arguments);
}
/**
* 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.ACTION_INPUT_PIN__OWNED_COMMENT, UMLPackage.ACTION_INPUT_PIN__NAME_EXPRESSION, UMLPackage.ACTION_INPUT_PIN__UPPER_BOUND, UMLPackage.ACTION_INPUT_PIN__LOWER_VALUE,
UMLPackage.ACTION_INPUT_PIN__UPPER_VALUE, UMLPackage.ACTION_INPUT_PIN__FROM_ACTION };
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean isSetOwnedElements() {
return super.isSetOwnedElements()
|| eIsSet(UMLPackage.ACTION_INPUT_PIN__FROM_ACTION);
}
} //ActionInputPinImpl