KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > source > util > TaskListener


1 /*
2  * @(#)TaskListener.java 1.3 06/02/23
3  *
4  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  *
7  * Use and Distribution is subject to the Java Research License available
8  * at <http://wwws.sun.com/software/communitysource/jrl.html>.
9  */

10
11 package com.sun.source.util;
12
13
14 /**
15  * Provides a listener to monitor the activity of the Sun Java Compiler, javac.
16  *
17  * @author Jonathan Gibbons
18  * @since 1.6
19  */

20 public interface TaskListener
21 {
22     public void started(TaskEvent e);
23
24     public void finished(TaskEvent e);
25 }
26
Popular Tags