1 | public void targetFinished(BuildEvent event) {↵ | | 1 | public void targetFinished(BuildEvent event) {↵
|
2 | }↵ | | 2 | ↵
|
|
3 | /**↵ | | 3 | ↵
|
4 | * Empty implementation required by SubBuildListener interface.↵ | | |
|
5 | * @param event ignored.↵ | | |
|
6 | * @since Ant 1.7↵ | | |
|
| | | 4 | //System.out.println("targetFinished " + event.getTarget().getName());↵
|
| | | 5 | }↵
|
|
| | | 6 | /**↵
|
| | | 7 | * Fired when a task is started.↵
|
| | | 8 | *↵
|
| | | 9 | * @see BuildEvent#getTask()↵
|
7 | */↵ | | 10 | */↵
|
8 | public void taskStarted(BuildEvent event) {↵ | | 11 | public void taskStarted(BuildEvent event) {↵
|
9 | }↵ | | 12 | ↵
|
|
10 | /**↵ | | |
|
11 | * Empty implementation required by SubBuildListener interface.↵ | | |
|
12 | * @param event ignored.↵ | | |
|
13 | * @since Ant 1.7↵ | | |
|
| | | 13 | //System.out.println("taskStarted " + event.getTask().getTaskName());↵
|
| | | 14 | }↵
|
|
| | | 15 | /**↵
|
| | | 16 | * Fired when a task has finished. This event will still↵
|
| | | 17 | * be throw if an error occurred during the build.↵
|
| | | 18 | *↵
|
| | | 19 | * @see BuildEvent#getException()↵
|
14 | */↵ | | 20 | */↵
|
15 | public void taskFinished(BuildEvent event) | | 21 | public void taskFinished(BuildEvent event)
|