示例#1
0
 /**
  * Pass output sent to System.out to the new project.
  *
  * @param output The output to log. Should not be <code>null</code>.
  * @since Ant 1.6.2
  */
 public void handleFlush(String output) {
   if (ant != null) {
     ant.handleFlush(output);
   } else {
     super.handleFlush(output);
   }
 }
示例#2
0
 /**
  * Pass output sent to System.out to the new project.
  *
  * @since Ant 1.5.2
  */
 public void handleFlush(String output) {
   if (callee != null) {
     callee.handleFlush(output);
   } else {
     super.handleFlush(output);
   }
 }