Constructor JDialog(Frame owner, String title, boolean modal)
Member of: javax.swing.JDialog
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 dialog = new JDialog(parent, "Dynamic Charts", true);
2 popup = new JDialog(frame, "Jigsaw Password Editor", false);
3 popup = new JDialog(frame, "Authorization for JigAdmin", false);
4 dialog = new JDialog(f, "Load Model", true);
5 dialog = new JDialog(frame, title, true);
6 jdialog = new JDialog(
7 internalDialog = new JDialog((JFrame) owner, title, modal);
8 new JDialog(
9 _dialog = new JDialog(frame, _title, true);
10 final JDialog d = new JDialog( FRAME, "JJBox Configuration", true );
11 final JDialog dialog = new JDialog(parent, title, true);
12 legendDialog = new JDialog(this, "Legend", false);
13 final JDialog j = new JDialog((JFrame)parent, "Register Server", true );
14 dialog=new JDialog(launcher,"Moses Simulation Parameter Editor",true);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.