|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Instances of classes that implement this interface can register to be also notified when things happened during a subbuild.
A subbuild is a separate project instance created by the
<ant>
task family. These project instances will
never fire the buildStarted and buildFinished events, but they will
fire subBuildStarted/ and subBuildFinished. The main project
instance - the one created by running Ant in the first place - will
never invoke one of the methods of this interface.
BuildEvent
,
Project.addBuildListener(BuildListener)
Method Summary | |
void |
subBuildFinished(BuildEvent event)
Signals that the last target has finished. |
void |
subBuildStarted(BuildEvent event)
Signals that a subbuild has started. |
Methods inherited from interface org.apache.tools.ant.BuildListener |
buildFinished, buildStarted, messageLogged, targetFinished, targetStarted, taskFinished, taskStarted |
Method Detail |
public void subBuildStarted(BuildEvent event)
event
- An event with any relevant extra information.
Must not be null
.public void subBuildFinished(BuildEvent event)
event
- An event with any relevant extra information.
Must not be null
.BuildEvent.getException()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |