summaryrefslogtreecommitdiff
path: root/java/gjt/DialogClient.java
blob: 7e67cea758ecaa450c8a4869f3343b07d14ff027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package gjt;

import java.awt.Dialog;

/**
 * DialogClients are notified when the Dialog with which they 
 * are associated is dismissed.  A reference to the dismissed 
 * Dialog is passed as a parameter of dialogDismissed() in case 
 * a DialogClient is a client of more than one Dialog.<p>
 *
 * @version 1.0, Apr 1 1996
 * @author  David Geary
 * @see     MessageDialog
 * @see     QuestionDialog
 * @see     YesNoDialog
 * @see     gjt.test.DialogTest
 */
public interface DialogClient {
    abstract public void dialogDismissed(Dialog d); 
}