You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by jh...@apache.org on 2009/04/03 06:55:43 UTC

svn commit: r761528 - /ant/core/trunk/src/main/org/apache/tools/ant/Executor.java

Author: jhm
Date: Fri Apr  3 04:55:43 2009
New Revision: 761528

URL: http://svn.apache.org/viewvc?rev=761528&view=rev
Log:
Better documentation of getSubProjectExecutor()

Modified:
    ant/core/trunk/src/main/org/apache/tools/ant/Executor.java

Modified: ant/core/trunk/src/main/org/apache/tools/ant/Executor.java
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/Executor.java?rev=761528&r1=761527&r2=761528&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/Executor.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/Executor.java Fri Apr  3 04:55:43 2009
@@ -35,6 +35,12 @@
 
     /**
      * Get the appropriate subproject Executor instance.
+     *
+     * This allows the top executor to control what type of executor is used to execute
+     * subprojects via <ant>/<antcall>/<subant> and task that extend these.
+     * All bundled Executors return a SingleCheckExecutor (running a merged set of
+     * depended targets for all targets called) to run sub-builds.
+     *
      * @return an Executor instance.
      */
     Executor getSubProjectExecutor();