A single ModelANT selector, that produces a collection to iterate upon. No more than one selector or resource collection set expected. |
Choose among:
Element |
Description |
allOfMetaclassSelector |
Selector of all model elements, that are instances of a metaclass |
propertySelector |
Select the collection held as a value of a property. The not defined properties are treated as empty lists,
the collection-valued attributes are used to iterate upon, the attributes that have any other than a collection value
a returned as a collection of a single element. |
ref.get |
Retrieve an object by its MOF ID or as an associated object or an attribute's value. |
search |
Starting from the selected objects, execute the nested tasks for them and collect
the produced results for iteration upon. The iteration ends when all objects are
processed and no new objects are put for collected.
Note:
<search property="name">
is a shortcut of
<search>
<propertSelector property="name"/>
If no selectors specified, it iterates on the value of "this" property |
select |
Iterate among the selected objects and collect all those objects that satisfy the nested condition.
In an advanced usage form, state the name of the property to collect in the "collect" property and provide
nested tasks to set up the value of the "collect" property for each object that satisfies the nested condition.
Note:
<select property="name">
is a shortcut of
<select>
<propertSelector property="name"/>
If no selectors specified, it iterates on the value of "this" property |
uml13.get |
This get task allows navigation through the UML 1.3 specific associations that are unidirectional
in the UML 1.3 meta-model, but are useful in the opposite direction.
Supported paths
- tag = the tag values associated to the model element
- stereotype = the stereotype assigned to the model element
- associationEnd = the collection of association ends associated
to the model element. Valid only for Classifier instances.
This task and its subclasses could be used also as a selector in iterator, select, search, etc, tasks
as it inherits from the general GetTask |
|