|
Ant example source code file (xor.xml)
The xor.xml source code
<project default="all">
<!--
Xor semantics
in out
== ===
00 0
01 1
10 1
00 0
-->
<target name="testEmpty" >
<fail message="empty test">
<condition>
<xor/>
</condition>
</fail>
</target>
<target name="test1" >
<fail message="testTrue">
<condition>
<not>
<xor>
<istrue value="true" />
</xor>
</not>
</condition>
</fail>
</target>
<target name="test0" >
<fail message="testFalse">
<condition>
<xor>
<istrue value="" />
</xor>
</condition>
</fail>
</target>
<target name="test10" >
<fail message="test10">
<condition>
<not>
<xor>
<istrue value="true" />
<istrue value="" />
</xor>
</not>
</condition>
</fail>
</target>
<target name="test01" >
<fail message="test01">
<condition>
<not>
<xor>
<istrue value="" />
<istrue value="true" />
</xor>
</not>
</condition>
</fail>
</target>
<target name="test00" >
<fail message="test10">
<condition>
<xor>
<istrue value="" />
<istrue value="" />
</xor>
</condition>
</fail>
</target>
<target name="test11" >
<fail message="test11">
<condition>
<xor>
<istrue value="" />
<istrue value="" />
</xor>
</condition>
</fail>
</target>
</project>
Other Ant examples (source code examples)Here is a short list of links related to this Ant xor.xml source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.