/**
* 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
*/
/**
* Handles output.
* Send it the the new project if is present, otherwise
* call the super class.
* @param output The string to output.
* @see Task#handleFlush(String)
* @since Ant 1.5.2
*/
public void handleFlush(String output) {
if ( [[#variable131813a0]]!= null) {
[[#variable131813a0]].handleFlush(output);
}
else {
super.handleFlush(output);
}
}
/**
* Pass output sent to System.err to the new project.
*
* @param output The error output to log. Should not be <code>null</code>.
*
* @since Ant 1.6.2
*/
/**
* Handle error output.
* Send it the the new project if is present, otherwise
* call the super class.
* @param output The string to output.
*
* @see Task#handleErrorOutput(String)
* @since Ant 1.5
*/
public void handleErrorOutput(String output) {
if ( [[#variable131813a0]]!= null) {
[[#variable131813a0]].handleErrorOutput(output);
}
else {
super.handleErrorOutput(output);
}
}
/**
* Pass output sent to System.err to the new project.
*
* @param output The error output to log. Should not be <code>null</code>.
*
* @since Ant 1.6.2
*/
/**
* Handle error output.
* Send it the the new project if is present, otherwise
* call the super class.
* @param output The string to output.
* @see Task#handleErrorFlush(String)
* @since Ant 1.5.2
*/
public void handleErrorFlush(String output) {
if ( [[#variable131813a0]]!= null) {
[[#variable131813a0]].handleErrorFlush(output);
}
else {
super.handleErrorFlush(output);
}
}
|