Evaluate condition
if (countConditions() > 1) {
throw new BuildException("You must not nest more than one "
+ "condition into <not>");
}
if (countConditions() < 1) {
throw new BuildException("You must nest a condition into <not>");
}
return !((Condition) getConditions().nextElement()).eval();