List of usage examples for javax.swing JDialog subclass-usage
From source file nz.govt.natlib.ndha.manualdeposit.dialogs.ContentExists.java
public class ContentExists extends javax.swing.JDialog { /** * */ private static final long serialVersionUID = -5946242296660519220L;
From source file com.gdc.nms.web.mibquery.wizard.ciscavate.cjwizard.WizardTest2.java
/**
* This demo class uses a JDialog to hold the wizard.
*
* It show three pages: 1) You can enter a city name. 2) You must enter another
* city that must be different to the first city. 3) It shows the last city
* entered.
From source file Main.java
class ConfirmDialog extends JDialog { public static final int OK_OPTION = 0; public static final int CANCEL_OPTION = 1; private int result = -1;
From source file vistas.dialogos.DlgDatosEmpleado.java
/** * * @author fesquivelc */ public class DlgDatosEmpleado extends javax.swing.JDialog {
From source file ModalMessage.java
public class ModalMessage extends JDialog { public ModalMessage(String s, boolean enabled) { initComponents(); jTextArea.setText(s); okButton.setEnabled(enabled);
From source file IHM.FenetreAjoutPhoto.java
/** * * @author poncho */ public class FenetreAjoutPhoto extends javax.swing.JDialog {
From source file de.wusel.partyplayer.gui.dialog.ChangePasswordDialog.java
/** * * @author wusel */ public class ChangePasswordDialog extends JDialog {
From source file com.cmsoftware.keyron.vista.admin.ActivarEmpleado.java
/**
* Ventana para activar un empleado.
*
* @author Cristiam Mercado cristiammercadoj@gmail.com
* @version 1.0
*/
From source file elaborate.tag_analysis.oosm.tools.mapper.NewProjectDialog.java
/** * * @author lendle */ public class NewProjectDialog extends javax.swing.JDialog {
From source file fxts.stations.trader.ui.ABaseDialog.java
/** * An interface class for closing and disbling dialog by * other components.<br> * Creation date (10/3/2003 8:45 AM) */ public abstract class ABaseDialog extends JDialog implements ComponentListener {