01: /**
02: * AuthorizationDialog.java
03: *
04: *
05: * Created: Tue Feb 20 12:16:47 2001
06: *
07: * @author
08: * @version
09: */package net.matuschek.jobo;
10:
11: import java.awt.*;
12: import javax.swing.*;
13:
14: //Property change stuff
15:
16: public class AuthorizationDialog extends JDialog {
17:
18: private static final long serialVersionUID = 1111229487527135214L;
19:
20: private String typedText = null;
21:
22: public String getValidatedText() {
23: return typedText;
24: }
25:
26: public AuthorizationDialog(Frame aFrame, String host, String realm) {
27: super (aFrame, true);
28:
29: setTitle("Authorization required");
30: }
31:
32: } // AuthorizationDialog
|