org.apache.tools.ant
Interface BuildListener

public interface BuildListener
extends EventListener
Instances of classes that implement this interface can register to be notified when things happened during a build.
SinceNot specified.
VersionNot specified.
AuthorNot specified.
Wiki javadoc Use textile entry format.
Add your comments here.
Method Summary
void buildFinished( BuildEvent event )
Signals that the last target has finished.
void buildStarted( BuildEvent event )
Signals that a build has started.
void messageLogged( BuildEvent event )
Signals a message logging event.
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.
buildFinished
public void buildFinished ( BuildEvent event )
Signals that the last target has finished. This event will still be fired if an error occurred during the build.
Parameters
TypeNameDescription
BuildEvent event An event with any relevant extra information. Must not be null.
Returns void No description provided.
See also
Wiki javadoc Use textile entry format.
Add your comments here.
buildStarted
public void buildStarted ( BuildEvent event )
Signals that a build has started. This event is fired before any targets have started.
Parameters
TypeNameDescription
BuildEvent event An event with any relevant extra information. Must not be null.
Returns void No description provided.
Wiki javadoc Use textile entry format.
Add your comments here.
messageLogged
public void messageLogged ( BuildEvent event )
Signals a message logging event.
Parameters
TypeNameDescription
BuildEvent event An event with any relevant extra information. Must not be null.
Returns void No description provided.
Wiki javadoc Use textile entry format.
Add your comments here.
targetFinished
public void targetFinished ( BuildEvent event )
Signals that a target has finished. This event will still be fired if an error occurred during the build.
Parameters
TypeNameDescription
BuildEvent event An event with any relevant extra information. Must not be null.
Returns void No description provided.
See also
Wiki javadoc Use textile entry format.
Add your comments here.
targetStarted
public void targetStarted ( BuildEvent event )
Signals that a target is starting.
Parameters
TypeNameDescription
BuildEvent event An event with any relevant extra information. Must not be null.
Returns void No description provided.
See also
Wiki javadoc Use textile entry format.
Add your comments here.
taskFinished
public void taskFinished ( BuildEvent event )
Signals that a task has finished. This event will still be fired if an error occurred during the build.
Parameters
TypeNameDescription
BuildEvent event An event with any relevant extra information. Must not be null.
Returns void No description provided.
See also
Wiki javadoc Use textile entry format.
Add your comments here.
taskStarted
public void taskStarted ( BuildEvent event )
Signals that a task is starting.
Parameters
TypeNameDescription
BuildEvent event An event with any relevant extra information. Must not be null.
Returns void No description provided.
See also
Wiki javadoc Use textile entry format.
Add your comments here.