Example usage for javax.swing JDialog subclass-usage

List of usage examples for javax.swing JDialog subclass-usage

Introduction

In this page you can find the example usage for javax.swing JDialog subclass-usage.

Usage

From source file org.ut.biolab.medsavant.client.view.dialog.SavantExportForm.java

/**
 *
 * @author AndrewBrook
 */
public class SavantExportForm extends javax.swing.JDialog {

From source file DialogTest.java

/**
 * A sample modal dialog that displays a message and waits for the user to click the Ok button.
 */
class AboutDialog extends JDialog {
    public AboutDialog(JFrame owner) {
        super(owner, "About DialogTest", true);

From source file nz.govt.natlib.ndha.manualdeposit.dialogs.ApplicationProperties.java

public final class ApplicationProperties extends javax.swing.JDialog {

    protected class WholeNumberDocument extends PlainDocument {

        private static final long serialVersionUID = 2819561773418391970L;

From source file org.rdv.ui.ConsoleDialog.java

public class ConsoleDialog extends JDialog implements java.util.Observer {
    /** serialization version identifier */
    private static final long serialVersionUID = -8875776463661389468L;
    private static final int messageLimit = 2048;

    static MessageBuffer messageBuffer = new MessageBuffer();

From source file com.googlecode.vfsjfilechooser2.accessories.connection.ConnectionDialog.java

/**
 * The connection dialog
 * @author Yves Zoundi <yveszoundi at users dot sf dot net>
 * @author Jojada Tirtowidjojo <jojada at users.sourceforge.net>
 * @version 0.0.1
 */

From source file de.atomfrede.tools.evalutation.options.ui.OptionsDialog.java

public class OptionsDialog extends JDialog {

    private final Log log = LogFactory.getLog(OptionsDialog.class);
    private static final long serialVersionUID = 2017237494464526876L;
    // type A (= Juliane) Options
    JCheckBox shiftByOneHourCheckBox, recordReferenceValveCheckbox;

From source file ca.phon.app.session.editor.view.media_player.PlayCustomSegmentDialog.java

/**
 * Dialog to play custom segments.
 */
public class PlayCustomSegmentDialog extends JDialog {

    private static final long serialVersionUID = -1199119546046104883L;

From source file net.sf.profiler4j.console.ProjectDialog.java

public class ProjectDialog extends JDialog {

    private JPanel jContentPane = null;
    private JPanel jPanel = null;
    private JButton okButton = null;
    private JButton cancelButton = null;

From source file com.mirth.connect.manager.ManagerDialog.java

public class ManagerDialog extends JDialog {

    private ServiceController serviceController = null;
    private ManagerController managerController = null;
    private boolean loading = false;
    private String lastSelectedDatabaseType;

From source file de.xplib.xdbm.ui.dialog.FirstStartSetup.java

/**
 *  
 * @author Manuel Pichler <manuel.pichler@xplib.de>
 * @version $Revision: 1.1 $
 */
public class FirstStartSetup extends JDialog implements JarClassFinderCallback {