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