示例#1
0
 protected void handleOutput(String line) {
   if (callee != null) {
     callee.handleOutput(line);
   } else {
     super.handleOutput(line);
   }
 }
示例#2
0
 /**
  * Pass output sent to System.out to the new project.
  *
  * @param output a line of output
  * @since Ant 1.6.2
  */
 public void handleOutput(String output) {
   if (ant != null) {
     ant.handleOutput(output);
   } else {
     super.handleOutput(output);
   }
 }
示例#3
0
 /**
  * Pass output sent to System.out to the new project.
  *
  * @since Ant 1.5
  */
 public void handleOutput(String output) {
   if (callee != null) {
     callee.handleOutput(output);
   } else {
     super.handleOutput(output);
   }
 }