List of usage examples for javax.swing JDialog subclass-usage
From source file savant.util.swing.TrackChooser.java
/** * * @author AndrewBrook */ public class TrackChooser extends JDialog { private static final Log LOG = LogFactory.getLog(TrackChooser.class);
From source file org.rdv.ui.LoginDialog.java
/** * @author Wei Deng */ public class LoginDialog extends JDialog { /** serialization version identifier */
From source file com.sec.ose.osi.ui.frm.main.manage.dialog.JDlgProjectAdd.java
/** * JDlgProjectAdd * @author suhyun47.kim, sjh.yoo, hankido.lee * */ public class JDlgProjectAdd extends JDialog implements ActionListener {
From source file org.rdv.ui.RBNBConnectionDialog.java
/** * @author Jason P. Hanley */ public class RBNBConnectionDialog extends JDialog { /** serialization version identifier */
From source file pcgen.gui2.dialog.AboutDialog.java
public class AboutDialog extends JDialog { public AboutDialog(PCGenFrame frame) { super(frame, LanguageBundle.getString("in_abt_title"), true); //$NON-NLS-1$ getContentPane().setLayout(new BorderLayout()); getContentPane().add(new MainAbout(), BorderLayout.CENTER);
From source file be.ac.ua.comp.scarletnebula.gui.windows.LinkUnlinkWindow.java
public class LinkUnlinkWindow extends JDialog { private static final Log log = LogFactory.getLog(ChooseImagePage.class); private static final long serialVersionUID = 1L; final ServerListModel unlinkedServerListModel = new ServerListModel(CreateNewServerServer.NO_NEW_SERVER); final ServerListModel linkedServerListModel = new ServerListModel(CreateNewServerServer.NO_NEW_SERVER);
From source file FontPicker.java
class FontChooser extends JDialog implements ActionListener {
JColorChooser colorChooser;
JComboBox fontName;
From source file net.itransformers.topologyviewer.dialogs.snmpDiscovery.DiscoveryManagerDialogV2.java
public class DiscoveryManagerDialogV2 extends JDialog { static Logger logger = Logger.getLogger(DiscoveryManagerDialogV2.class); public static final String DISCOVERED_DEVICES = "Discovered devices \n"; public static final String VERSION_LABEL = "version"; private JTextField addressTextField; private JFrame frame;
From source file org.nuclos.client.layout.wysiwyg.editor.ui.panels.WYSIWYGMetaInformationPicker.java
/**
* This Class displays a Dialog for picking Metainformation.
*
* It contains a textfield for typing and filters the list for the fitting metainformation.
* Cursor up and down selects the next or previous entry in the list.
* Enter is like clicking on the Save Button and ESC does cancel.
From source file org.pentaho.reporting.engine.classic.core.modules.gui.commonswing.ExceptionDialog.java
/** * The exception dialog is used to display an exception and the exceptions stacktrace to the user. * * @author Thomas Morgner */ public class ExceptionDialog extends JDialog {