Home | History | Annotate | Download | only in ant

Lines Matching refs:And

13  * See the License for the specific language governing permissions and
22 import org.apache.tools.ant.taskdefs.condition.And;
47 * both <then> and <else> behave like <sequential>.
48 * <condition> behaves like an <and> condition.
50 * The presence of both <then> and <else> is not required, but one of them must be present.
62 private And mAnd;
75 * Creates and returns the <condition> node which is basically a <and>.
79 throw new BuildException("Cannot use both condition attribute and <condition> element");
82 mAnd = new And();
88 * Creates and returns the <then> {@link Sequential}
96 * Creates and returns the <else> {@link Sequential}