org.apache.tools.ant
public interface SubBuildListener extends BuildListener
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.
Since: Ant 1.6.2
See Also: BuildEvent
Method Summary | |
---|---|
void | subBuildFinished(BuildEvent event)
Signals that the last target has finished. |
void | subBuildStarted(BuildEvent event)
Signals that a subbuild has started. |
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
.