jglick 2004/12/02 14:06:16 Modified: src/main/org/apache/tools/ant/taskdefs ImportTask.java Log: Trivial Javadoc formatting edits. Revision Changes Path 1.29 +8 -9 ant/src/main/org/apache/tools/ant/taskdefs/ImportTask.java Index: ImportTask.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/ImportTask.java,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- ImportTask.java 28 Apr 2004 09:01:08 -0000 1.28 +++ ImportTask.java 2 Dec 2004 22:06:15 -0000 1.29 @@ -29,27 +29,26 @@ import java.util.Vector; /** - * <p> * Task to import another build file into the current project. * <p> * It must be 'top level'. On execution it will read another Ant file * into the same Project. + * </p> * <p> * <b>Important</b>: we have not finalized how relative file references - * will be resolved in deep/complex build hierarchies -such as what happens + * will be resolved in deep/complex build hierarchies - such as what happens * when an imported file imports another file. Use absolute references for * enhanced build file stability, especially in the imported files. - * - * Examples + * </p> + * <p>Examples:</p> * <pre> - * <import file="../common-targets.xml" /> + * <import file="../common-targets.xml"/> * </pre> - * Import targets from a file in a parent directory. - *<p> + * <p>Import targets from a file in a parent directory.</p> * <pre> - * <import file="${deploy-platform}.xml" /> + * <import file="${deploy-platform}.xml"/> * </pre> - * Import the project defined by the property deploy-platform + * <p>Import the project defined by the property <code>deploy-platform</code>.</p> * * @since Ant1.6 * @ant.task category="control"
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]