BuildEvent
, Project#addBuildListener(BuildListener)
Modifier and Type | Method and Description |
---|---|
public void | buildFinished(BuildEvent
An event with any relevant extra information.
Must not be event)null .Signals that the last target has finished. |
public void | buildStarted(BuildEvent
An event with any relevant extra information.
Must not be event)null .Signals that a build has started. |
public void | messageLogged(BuildEvent
An event with any relevant extra information.
Must not be event)null .Signals a message logging event. |
public void | targetFinished(BuildEvent
An event with any relevant extra information.
Must not be event)null .Signals that a target has finished. |
public void | targetStarted(BuildEvent
An event with any relevant extra information.
Must not be event)null .Signals that a target is starting. |
public void | taskFinished(BuildEvent
An event with any relevant extra information.
Must not be event)null .Signals that a task has finished. |
public void | taskStarted(BuildEvent
An event with any relevant extra information.
Must not be event)null .Signals that a task is starting. |
buildFinished | back to summary |
---|---|
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.
|
buildStarted | back to summary |
---|---|
public void buildStarted(BuildEvent event) 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.
|
messageLogged | back to summary |
---|---|
public void messageLogged(BuildEvent event) Signals a message logging event.
|
targetFinished | back to summary |
---|---|
public void targetFinished(BuildEvent event) Signals that a target has finished. This event will still be fired if an error occurred during the build.
|
targetStarted | back to summary |
---|---|
public void targetStarted(BuildEvent event) Signals that a target is starting.
|
taskFinished | back to summary |
---|---|
public void taskFinished(BuildEvent event) Signals that a task has finished. This event will still be fired if an error occurred during the build.
|
taskStarted | back to summary |
---|---|
public void taskStarted(BuildEvent event) Signals that a task is starting.
|