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