KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hudson > model > BuildListener


1 package hudson.model;
2
3 /**
4  * Receives events that happen during a build.
5  *
6  * @author Kohsuke Kawaguchi
7  */

8 public interface BuildListener extends TaskListener {
9
10     /**
11      * Called when a build is started.
12      */

13     void started();
14
15     /**
16      * Called when a build is finished.
17      */

18     void finished(Result result);
19 }
20
Popular Tags