Package org.apache.tools.ant.taskdefs
Class RecorderEntry
java.lang.Object
org.apache.tools.ant.taskdefs.RecorderEntry
- All Implemented Interfaces:
java.util.EventListener
,BuildListener
,BuildLogger
,SubBuildListener
public class RecorderEntry extends java.lang.Object implements BuildLogger, SubBuildListener
This is a class that represents a recorder. This is the listener to the
build process.
- Since:
- Ant 1.4
-
Constructor Summary
Constructors Modifier Constructor Description protected
RecorderEntry(java.lang.String name)
-
Method Summary
Modifier and Type Method Description void
buildFinished(BuildEvent event)
Signals that the last target has finished.void
buildStarted(BuildEvent event)
Signals that a build has started.void
cleanup()
java.lang.String
getFilename()
Project
getProject()
Get the project associated with this recorder entry.void
messageLogged(BuildEvent event)
Signals a message logging event.void
setEmacsMode(boolean emacsMode)
Sets this logger to produce emacs (and other editor) friendly output.void
setErrorPrintStream(java.io.PrintStream err)
Sets the output stream to which this logger is to send error messages.void
setMessageOutputLevel(int level)
Sets the highest level of message this logger should respond to.void
setOutputPrintStream(java.io.PrintStream output)
Sets the output stream to which this logger is to send its output.void
setProject(Project project)
Set the project associated with this recorder entry.void
setRecordState(java.lang.Boolean state)
Turns off or on this recorder.void
subBuildFinished(BuildEvent event)
Cleans up any resources held by this recorder entry at the end of a subbuild if it has been created for the subbuild's project instance.void
subBuildStarted(BuildEvent event)
Empty implementation to satisfy the BuildListener interface.void
targetFinished(BuildEvent event)
Signals that a target has finished.void
targetStarted(BuildEvent event)
Signals that a target is starting.void
taskFinished(BuildEvent event)
Signals that a task has finished.void
taskStarted(BuildEvent event)
Signals that a task is starting.
-
Constructor Details
-
RecorderEntry
protected RecorderEntry(java.lang.String name)- Parameters:
name
- The name of this recorder (used as the filename).
-
-
Method Details
-
getFilename
public java.lang.String getFilename()- Returns:
- the name of the file the output is sent to.
-
setRecordState
public void setRecordState(java.lang.Boolean state)Turns off or on this recorder.- Parameters:
state
- true for on, false for off, null for no change.
-
buildStarted
Description copied from interface:BuildListener
Signals that a build has started. This event is fired before any targets have started.This event is fired before the project instance is fully configured. In particular no properties have been set and the project may not know its name or default target, yet.
- Specified by:
buildStarted
in interfaceBuildListener
- Parameters:
event
- An event with any relevant extra information. Must not benull
.- See Also:
.
-
buildFinished
Description copied from interface:BuildListener
Signals that the last target has finished. This event will still be fired if an error occurred during the build.- Specified by:
buildFinished
in interfaceBuildListener
- Parameters:
event
- An event with any relevant extra information. Must not benull
.- See Also:
.
-
subBuildFinished
Cleans up any resources held by this recorder entry at the end of a subbuild if it has been created for the subbuild's project instance.- Specified by:
subBuildFinished
in interfaceSubBuildListener
- Parameters:
event
- the buildFinished event- Since:
- Ant 1.6.2
- See Also:
BuildEvent.getException()
-
subBuildStarted
Empty implementation to satisfy the BuildListener interface.- Specified by:
subBuildStarted
in interfaceSubBuildListener
- Parameters:
event
- the buildStarted event- Since:
- Ant 1.6.2
-
targetStarted
Description copied from interface:BuildListener
Signals that a target is starting.- Specified by:
targetStarted
in interfaceBuildListener
- Parameters:
event
- An event with any relevant extra information. Must not benull
.- See Also:
.
-
targetFinished
Description copied from interface:BuildListener
Signals that a target has finished. This event will still be fired if an error occurred during the build.- Specified by:
targetFinished
in interfaceBuildListener
- Parameters:
event
- An event with any relevant extra information. Must not benull
.- See Also:
.
-
taskStarted
Description copied from interface:BuildListener
Signals that a task is starting.- Specified by:
taskStarted
in interfaceBuildListener
- Parameters:
event
- An event with any relevant extra information. Must not benull
.- See Also:
.
-
taskFinished
Description copied from interface:BuildListener
Signals that a task has finished. This event will still be fired if an error occurred during the build.- Specified by:
taskFinished
in interfaceBuildListener
- Parameters:
event
- An event with any relevant extra information. Must not benull
.- See Also:
.
-
messageLogged
Description copied from interface:BuildListener
Signals a message logging event.- Specified by:
messageLogged
in interfaceBuildListener
- Parameters:
event
- An event with any relevant extra information. Must not benull
.- See Also:
.
-
setMessageOutputLevel
public void setMessageOutputLevel(int level)Description copied from interface:BuildLogger
Sets the highest level of message this logger should respond to. Only messages with a message level lower than or equal to the given level should be written to the log.Constants for the message levels are in the
Project
class. The order of the levels, from least to most verbose, isMSG_ERR
,MSG_WARN
,MSG_INFO
,MSG_VERBOSE
,MSG_DEBUG
.- Specified by:
setMessageOutputLevel
in interfaceBuildLogger
- Parameters:
level
- the logging level for the logger.- See Also:
.
-
setOutputPrintStream
public void setOutputPrintStream(java.io.PrintStream output)Description copied from interface:BuildLogger
Sets the output stream to which this logger is to send its output.- Specified by:
setOutputPrintStream
in interfaceBuildLogger
- Parameters:
output
- The output stream for the logger. Must not benull
.- See Also:
.
-
setEmacsMode
public void setEmacsMode(boolean emacsMode)Description copied from interface:BuildLogger
Sets this logger to produce emacs (and other editor) friendly output.- Specified by:
setEmacsMode
in interfaceBuildLogger
- Parameters:
emacsMode
-true
if output is to be unadorned so that emacs and other editors can parse files names, etc.- See Also:
.
-
setErrorPrintStream
public void setErrorPrintStream(java.io.PrintStream err)Description copied from interface:BuildLogger
Sets the output stream to which this logger is to send error messages.- Specified by:
setErrorPrintStream
in interfaceBuildLogger
- Parameters:
err
- The error stream for the logger. Must not benull
.- See Also:
.
-
setProject
Set the project associated with this recorder entry.- Parameters:
project
- the project instance- Since:
- 1.6.2
-
getProject
Get the project associated with this recorder entry.- Returns:
- Project
- Since:
- 1.8.0
-
cleanup
public void cleanup()- Since:
- 1.6.2
-