<!-- the execution here is as follows:
1. if attribute SYMBOL exist, add attribute SUB_SYMBOL with value 1 and return true
and exit alternatives
2. if attribute SYMBOL does not exist, it returns false and proceed to the next
child instruction where an attribute SYMBOL with value 1 is added and exit
alternatives -->
<alternatives>
<test type="attribute" name="SYMBOL">
<add target="attribute" name="SUB_SYMBOL value="1"/>
</test>
<add target="attribute" name="SYMBOL" value="1"/>
</alternatives> |