org.apache.tools.ant
public interface BuildListener extends EventListener
See Also: BuildEvent
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.
|
Parameters: event An event with any relevant extra information.
Must not be null
.
See Also: getException
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.
Parameters: event An event with any relevant extra information.
Must not be null
.
Parameters: event An event with any relevant extra information.
Must not be null
.
See Also: getMessage getException getPriority
Parameters: event An event with any relevant extra information.
Must not be null
.
See Also: getException
Parameters: event An event with any relevant extra information.
Must not be null
.
See Also: getTarget
Parameters: event An event with any relevant extra information.
Must not be null
.
See Also: getException
Parameters: event An event with any relevant extra information.
Must not be null
.
See Also: getTask