Your preferences have been saved!
» How to use a Class argument in a custom class - package org.mwrm.ant.tasks; import org.apache.tools.ant.Project; import org.apache.tools.ant.Task; import org.apache.tools.ant.BuildException; /**  * <p>The <code>ClassSetTask</code> class  * demonstrates how to use a <code>Class</code> argument  * in a custom class attribute.</p>  *  */... 16 Feb 12 » Life Cycle Task - package org.mwrm.ant.tasks; import java.util.Hashtable; import java.util.Enumeration; import org.apache.tools.ant.Project; import org.apache.tools.ant.Task; import org.apache.tools.ant.BuildException; /**  * <p>At each stage in a task's life cycle, this class displays information  * to show the internal state of the task and its position with in the project.  * It takes a <code>name</code> attribute.</p>... 16 Feb 12 » Extend Javadoc Task - package org.mwrm.ant.tasks; import java.io.File; import java.util.Enumeration; import java.util.StringTokenizer; import java.util.Vector; import org.apache.tools.ant.Project; import org.apache.tools.ant.BuildException; import org.apache.tools.ant.taskdefs.Javadoc; import org.apache.tools.ant.taskdefs.UpToDate; import org.apache.tools.ant.types.FileSet;... 16 Feb 12 » Ant Write Our Own Task - package org.mwrm.ant.tasks; import org.apache.tools.ant.Task; import org.apache.tools.ant.Main; /**  * <p>The <code>ProjectHelpTask</code> class displays usage information  * for the current project. This is the same information as is displayed  * by <code>-projecthelp</code>.</p>  *  */ public class ProjectHelpTask extends Task {... 16 Feb 12 » Create your own Ant task - /* Code revised from  Cooking with Java XP by Eric M. Burke and Brian M. Coyner ISBN: 0-596-00387-0 Pages: 288 */ <?xml version="1.0"?> <project name="Ant Task" default="compile" basedir=".">   <property name="dir.build" value="build"/>... 16 Feb 12