Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
javax.swing.JDialog

Uses of JDialog in javax.swing
 

Fields in javax.swing declared as JDialog
(package private)  JDialog ProgressMonitor.progressDialog
           
private  JDialog JColorChooser.DefaultOKCancelListener.dialog
          The JDialog to hide.
 

Methods in javax.swing that return JDialog
protected  JDialog JFileChooser.createDialog(java.awt.Component parent)
          Creates a modal dialog in which to display the file chooser.
 JDialog JOptionPane.createDialog(java.awt.Component parentComponent, java.lang.String title)
          This method creates a new JDialog that is either centered around the parent's frame or centered on the screen (if the parent is null).
static JDialog JColorChooser.createDialog(java.awt.Component component, java.lang.String title, boolean modal, JColorChooser chooserPane, java.awt.event.ActionListener okListener, java.awt.event.ActionListener cancelListener)
          This method will take the given JColorChooser and place it in a JDialog with the given modal property.
 

Methods in javax.swing with parameters of type JDialog
(package private) static void JColorChooser.makeModal(JDialog dialog)
          This is a helper method to make the given JDialog block until it is hidden.
 

Constructors in javax.swing with parameters of type JDialog
JColorChooser.DefaultOKCancelListener(JDialog dialog)
          Creates a new DefaultOKCancelListener with the given JDialog to hide.