org.apache.tools.ant.taskdefs
public class Echo extends Task
Since: Ant 1.1
UNKNOWN: category="utility"
| Nested Class Summary | |
|---|---|
| static class | Echo.EchoLevel
The enumerated values for the level attribute. |
| Field Summary | |
|---|---|
| protected boolean | append |
| protected File | file |
| protected int | logLevel |
| protected String | message |
| Method Summary | |
|---|---|
| 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.
|
Parameters: msg the CDATA text to append to the output text
Throws: BuildException if something goes wrong with the build
Parameters: append if true, append to existing file, default is false.
Parameters: encoding the character encoding to use.
Since: 1.7
Parameters: file the file to write to, if not set, echo to standard output
The default is "warning" to ensure that messages are displayed by default when using the -quiet command line option.
Parameters: echoLevel the logging level
Parameters: msg Sets the value for the message variable.