public interface ReduceAction extends Action
The following features are supported:
UMLPackage.getReduceAction()
SEPARATOR
Modifier and Type | Method and Description |
---|---|
InputPin |
createCollection(String name,
Type type)
Creates a new
InputPin ,with the specified 'Name', and 'Type', and sets
the 'Collection' containment reference |
InputPin |
createCollection(String name,
Type type,
EClass eClass)
Creates a new
InputPin , with the specified 'Name', and 'Type', and sets
the 'Collection' containment reference |
OutputPin |
createResult(String name,
Type type)
Creates a new
OutputPin ,with the specified 'Name', and 'Type', and sets
the 'Result' containment reference |
InputPin |
getCollection()
Returns the value of the 'Collection' containment reference
|
Behavior |
getReducer()
Returns the value of the 'Reducer' reference
|
OutputPin |
getResult()
Returns the value of the 'Result' containment reference
|
boolean |
isOrdered()
Returns the value of the 'Is Ordered' attribute.
|
void |
setCollection(InputPin value)
Sets the value of the '
Collection ' containment reference |
void |
setIsOrdered(boolean value)
Sets the value of the '
Is Ordered ' attribute |
void |
setReducer(Behavior value)
Sets the value of the '
Reducer ' reference |
void |
setResult(OutputPin value)
Sets the value of the '
Result ' containment reference |
boolean |
validateInputTypeIsCollection(DiagnosticChain diagnostics,
Map context)
The type of the input must be a collection.
|
boolean |
validateOutputTypesAreCompatible(DiagnosticChain diagnostics,
Map context)
The type of the output must be compatible with the type of the output of the reducer behavior.
|
boolean |
validateReducerInputsOutput(DiagnosticChain diagnostics,
Map context)
The reducer behavior must have two input parameters and one output parameter, of types compatible with the types of elements of the input
collection.
|
createLocalPostcondition, createLocalPostcondition, createLocalPrecondition, createLocalPrecondition, getContext, getInput, getInput, getInputs, getLocalPostcondition, getLocalPostcondition, getLocalPostconditions, getLocalPrecondition, getLocalPrecondition, getLocalPreconditions, getOutput, getOutput, getOutputs
createHandler, getHandlers
getActivity, getIncoming, getIncoming, getIncomings, getInGroups, getInInterruptibleRegions, getInPartition, getInPartition, getInPartitions, getInStructuredNode, getOutgoing, getOutgoing, getOutgoings, getRedefinedNode, getRedefinedNode, getRedefinedNodes, setActivity, setInStructuredNode, validateOwned, validateOwnedStructuredNode
getRedefinedElement, getRedefinedElement, getRedefinedElements, getRedefinitionContext, getRedefinitionContext, getRedefinitionContexts, isConsistentWith, isLeaf, isRedefinitionContextValid, setIsLeaf, validateRedefinitionConsistent, validateRedefinitionContextValid
allNamespaces, allOwningPackages, createDependency, createNameExpression, getClientDependencies, getClientDependency, getClientDependency, getLabel, getLabel, getName, getNameExpression, getNamespace, getQualifiedName, getVisibility, isDistinguishableFrom, isSetName, isSetVisibility, separator, setName, setNameExpression, setVisibility, unsetName, unsetVisibility, validateHasNoQualifiedName, validateHasQualifiedName, validateVisibilityNeedsOwnership
addKeyword, allOwnedElements, applyStereotype, createEAnnotation, createOwnedComment, destroy, getApplicableStereotype, getApplicableStereotypes, getAppliedStereotype, getAppliedStereotypes, getAppliedSubstereotype, getAppliedSubstereotypes, getKeywords, getModel, getNearestPackage, getOwnedComments, getOwnedElements, getOwner, getRelationships, getRelationships, getRequiredStereotype, getRequiredStereotypes, getSourceDirectedRelationships, getSourceDirectedRelationships, getStereotypeApplication, getStereotypeApplications, getTargetDirectedRelationships, getTargetDirectedRelationships, getValue, hasKeyword, hasValue, isStereotypeApplicable, isStereotypeApplied, isStereotypeRequired, mustBeOwned, removeKeyword, setValue, unapplyStereotype, validateHasOwner, validateNotOwnSelf
compareTo, eExtendedClass, eIsInstanceOf, eIsInstanceOf, eIsProfiled, eIsRemoved, eMetamodel, eMetaTypeName, eModel, eRemove, eSetUniqueID, eUniqueID, superScript, superScript, toBoolean, toBoolean, toByte, toByte, toChar, toChar, toDouble, toDouble, toFloat, toFloat, toInt, toInt, toList, toList, toList, toList, toList, toLong, toLong, toObject, toObject, toSet, toSet, toShort, toShort, toString, toString
getEAnnotation, getEAnnotations
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
eAdapters, eDeliver, eNotify, eSetDeliver
Behavior getReducer()
setReducer(Behavior)
,
UMLPackage.getReduceAction_Reducer()
void setReducer(Behavior value)
Reducer
' reference.
value
- the new value of the 'Reducer' reference.getReducer()
OutputPin getResult()
setResult(OutputPin)
,
UMLPackage.getReduceAction_Result()
void setResult(OutputPin value)
Result
' containment reference.
value
- the new value of the 'Result' containment reference.getResult()
OutputPin createResult(String name, Type type)
OutputPin
,with the specified 'Name', and 'Type', and sets
the 'Result' containment reference.
name
- The 'Name' for the new OutputPin
, or null
.type
- The 'Type' for the new OutputPin
, or null
.OutputPin
.getResult()
InputPin getCollection()
setCollection(InputPin)
,
UMLPackage.getReduceAction_Collection()
void setCollection(InputPin value)
Collection
' containment reference.
value
- the new value of the 'Collection' containment reference.getCollection()
InputPin createCollection(String name, Type type, EClass eClass)
InputPin
, with the specified 'Name', and 'Type', and sets
the 'Collection' containment reference.
name
- The 'Name' for the new InputPin
, or null
.type
- The 'Type' for the new InputPin
, or null
.eClass
- The Ecore class of the InputPin
to create.InputPin
.getCollection()
InputPin createCollection(String name, Type type)
InputPin
,with the specified 'Name', and 'Type', and sets
the 'Collection' containment reference.
name
- The 'Name' for the new InputPin
, or null
.type
- The 'Type' for the new InputPin
, or null
.InputPin
.getCollection()
boolean isOrdered()
"false"
.
Tells whether the order of the input collection should determine the order in which the behavior is applied to its elements.
setIsOrdered(boolean)
,
UMLPackage.getReduceAction_IsOrdered()
void setIsOrdered(boolean value)
Is Ordered
' attribute.
value
- the new value of the 'Is Ordered' attribute.isOrdered()
boolean validateInputTypeIsCollection(DiagnosticChain diagnostics, Map context)
boolean validateOutputTypesAreCompatible(DiagnosticChain diagnostics, Map context)
boolean validateReducerInputsOutput(DiagnosticChain diagnostics, Map context)