Constructor JDialog(Frame owner, 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
new JDialog(new javax.swing.JFrame(), true).show();
2
javax.swing.JDialog dialog = new javax.swing.JDialog(new java.awt.Frame (), true );
3
dialog = new JDialog(f, true);
4
dialog = new JDialog(f, true);
5
mDialog = new JDialog(getApplication().getFrame(),true);
6
gameDialog = new javax.swing.JDialog(this,true);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.