KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > suberic > util > swing > ProgressDialogListener


1 package net.suberic.util.swing;
2
3 /**
4  * A listener to Progress Dialogs.
5  */

6 public interface ProgressDialogListener {
7
8   /**
9    * Called when the ProgressDialog is cancelled.
10    */

11   public void dialogCancelled();
12
13 }
14
Popular Tags