Lines Matching refs:condition
22 import org.apache.tools.ant.taskdefs.condition.And;
25 * If (condition) then: {@link Sequential} else: {@link Sequential}.
28 * <if condition="${prop with a boolean value}">
38 * <condition>
40 * </condition>
48 * <condition> behaves like an <and> condition.
51 * <if condition="${some.condition}">
67 * Sets the condition value
69 public void setCondition(boolean condition) {
70 mCondition = condition;
75 * Creates and returns the <condition> node which is basically a <and>.
79 throw new BuildException("Cannot use both condition attribute and <condition> element");
106 throw new BuildException("condition attribute or element must be set.");