KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > panoptes > swing > panels > ProgressListener


1 /*
2  * Created on Sep 3, 2003
3  *
4  */

5 package net.sf.panoptes.swing.panels;
6
7 /**
8  *
9  *
10  * @author Dag Liodden
11  * @version 0.1
12  */

13 public interface ProgressListener {
14     
15     public void setProgress(int currentProgress, int total);
16     public void newTask(String JavaDoc taskName);
17     public void operationFinished();
18 }
19
Popular Tags