Not
Evaluates the underlying child and returns the inverse value.
Children Tags
Usage Examples
Example #1
<if>
<not>
<eq op1="${ready}" op2="false" />
</not>
<then>
<log>not ready yet...</log>
</then>
</if>
Example #2
<if>
<not>
<and>
<eq op1="${value2}" op2="${test.value2}" />
<eq op1="${value3}" op2="${test.value3}" />
</and>
</not>
<then>
<log>Ready to go!</log>
</then>
</if>