List of usage examples for javax.swing JDialog subclass-usage
From source file gui.FeedbackGui.java
/** * * @author mkdr <makedir@gmail.com> */ public class FeedbackGui extends javax.swing.JDialog {
From source file com.apatar.ui.JSubmitHelpDialog.java
public class JSubmitHelpDialog extends JDialog { private static final long serialVersionUID = 1L; JTextArea text = new JTextArea(); JButton sendButton = new JButton("Send"); JButton cancel = new JButton("Cancel");
From source file net.sf.dvstar.transmission.dialogs.StatsDialog.java
/** * * @author dstarzhynskyi */ public class StatsDialog extends javax.swing.JDialog {
From source file com.floreantpos.ui.dialog.ManagerDialog.java
/** * * @author MShahriar */ public class ManagerDialog extends JDialog { private GlassPane glassPane;
From source file guineu.modules.database.openQualityControlFileDB.DatasetOpenDialog.java
/** * * @author scsandra */ public class DatasetOpenDialog extends JDialog {
From source file DownloadDialog.java
/******************************************************************** * Class: DownloadDialog * Purpose: used to log into KU server and download course data /*******************************************************************/ @SuppressWarnings("deprecation") class DownloadDialog extends JDialog implements ActionListener {
From source file Main.java
class MyDialog extends JDialog { public MyDialog(JFrame frame) { super(frame, "Dialog", false); JButton but = new JButton("test"); setLayout(new FlowLayout());
From source file net.aepik.alasca.gui.util.LoadFileFrame.java
public class LoadFileFrame extends JDialog implements ActionListener, WindowListener { private static final long serialVersionUID = 0; /** * La fentre appelante
From source file co.com.soinsoftware.hotelero.view.JFRoomPayment.java
/** * @author Carlos Rodriguez * @since 17/07/2016 * @version 1.0 */ public class JFRoomPayment extends JDialog {
From source file com.diversityarrays.kdxplore.heatmap.HeatMapParamsDialog.java
public class HeatMapParamsDialog extends JDialog { public interface VisToolOpenClose { void visToolCreated(JFrame frame, VisToolPanel panel); void visToolClosed(JFrame frame, VisToolPanel panel);