1 18 19 package org.apache.tools.ant.helper; 20 21 22 import org.apache.tools.ant.Project; 23 import org.apache.tools.ant.Executor; 24 import org.apache.tools.ant.BuildException; 25 26 27 33 public class SingleCheckExecutor implements Executor { 34 35 36 public void executeTargets(Project project, String [] targetNames) 37 throws BuildException { 38 project.executeSortedTargets( 39 project.topoSort(targetNames, project.getTargets(), false)); 40 } 41 42 43 public Executor getSubProjectExecutor() { 44 return this; 45 } 46 47 } 48 | Popular Tags |