protected void handleOutput(String line) { if (callee != null) { callee.handleOutput(line); } else { super.handleOutput(line); } }
/** * 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); } }
/** * 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); } }