org.apache.tools.ant.taskdefs
public class Recorder extends Task
Several recorders can exist at the same time. Each recorder is associated with a file. The filename is used as a unique identifier for the recorders. The first call to the recorder task with an unused filename will create a recorder (using the parameters provided) and add it to the listeners of the build. All subsequent calls to the recorder task using this filename will modify that recorders state (recording or not) or other properties (like logging level).
Some technical issues: the file's print stream is flushed for "finished" events (buildFinished, targetFinished and taskFinished), and is closed on a buildFinished event.
Since: Ant 1.4
Version: 0.5
See Also: RecorderEntry
UNKNOWN: name="record" category="utility"
Nested Class Summary | |
---|---|
static class | Recorder.ActionChoices
A list of possible values for the setAction() method.
|
static class | Recorder.VerbosityLevelChoices
A list of possible values for the setLoglevel() method.
|
Method Summary | |
---|---|
void | execute()
The main execution. |
protected RecorderEntry | getRecorder(String name, Project proj)
Gets the recorder that's associated with the passed in name. |
void | setAction(Recorder.ActionChoices action)
Sets the action for the associated recorder entry.
|
void | setAppend(boolean append)
Whether or not the logger should append to a previous file. |
void | setEmacsMode(boolean emacsMode)
Set emacs mode. |
void | setLoglevel(Recorder.VerbosityLevelChoices level)
Sets the level to which this recorder entry should log to.
|
void | setName(String fname)
Sets the name of the file to log to, and the name of the recorder
entry.
|
Throws: BuildException on error
Parameters: name the name of the recoder proj the current project
Returns: a recorder
Throws: BuildException on error
Parameters: action The action for the entry to take: start or stop.
Parameters: append if true, append to a previous file.
Parameters: emacsMode if true use emacs mode
See Also: VerbosityLevelChoices
Parameters: fname File name of logfile.