org.apache.tools.ant.taskdefs
Class Echo
- Cloneable
Writes a message to the Ant logging facilities.
static class | Echo.EchoLevel - The enumerated values for the level attribute.
|
void | addText(String msg) - Set a multiline message.
|
void | execute() - Does the work.
|
void | setAppend(boolean append) - If true, append to existing file.
|
void | setEncoding(String encoding) - Declare the encoding to use when outputting to a file;
Use "" for the platform's default encoding.
|
void | setFile(File file) - File to write to.
|
void | setLevel(Echo.EchoLevel echoLevel) - Set the logging level.
|
void | setMessage(String msg) - Message to write.
|
bindToOwner , execute , getOwningTarget , getRuntimeConfigurableWrapper , getTaskName , getTaskType , getWrapper , handleErrorFlush , handleErrorOutput , handleFlush , handleInput , handleOutput , init , isInvalid , log , log , log , log , maybeConfigure , perform , reconfigure , setOwningTarget , setRuntimeConfigurableWrapper , setTaskName , setTaskType |
append
protected boolean append
logLevel
protected int logLevel
message
protected String message
addText
public void addText(String msg)
Set a multiline message.
msg
- the CDATA text to append to the output text
setAppend
public void setAppend(boolean append)
If true, append to existing file.
append
- if true, append to existing file, default
is false.
setEncoding
public void setEncoding(String encoding)
Declare the encoding to use when outputting to a file;
Use "" for the platform's default encoding.
encoding
- the character encoding to use.
setFile
public void setFile(File file)
File to write to.
file
- the file to write to, if not set, echo to
standard output
setLevel
public void setLevel(Echo.EchoLevel echoLevel)
Set the logging level. Level should be one of
- error
- warning
- info
- verbose
- debug
The default is "warning" to ensure that messages are
displayed by default when using the -quiet command line option.
echoLevel
- the logging level
setMessage
public void setMessage(String msg)
Message to write.
msg
- Sets the value for the message variable.