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