passworddialog.java

来自「优秀的打印控件全源代码,类似水晶表的设计器!」· Java 代码 · 共 170 行

JAVA
170
字号
/* * JRParameterDialog.java * *  iReport  --  Visual designer for generating JasperReports Documents *  Copyright (C) 2002-2003  Giulio Toffoli gt@businesslogic.it * *  This program is free software; you can redistribute  and/or modify *  it under the terms of the GNU General Public License as published by *  the Free Software Foundation; either version 2 of the License, or *  (at your option) any later version. * *  This program is distributed in the hope that it will be useful, *  but WITHOUT ANY WARRANTY; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *  GNU General Public License for more details. * *  You should have received a copy of the GNU General Public License *  along with this program; if not, write to the Free Software *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * *  Giulio Toffoli *  Via T.Aspetti, 233 *  35100 Padova ITALY *  gt@businesslogic.it * * * Created on 9 maggio 2003, 17.25 */package it.businesslogic.ireport.connection;import it.businesslogic.ireport.util.*;import it.businesslogic.ireport.*;/** * * @author  Administrator */public class PasswordDialog extends javax.swing.JDialog {    /** Creates new form JRParameterDialog */    private String password = null;        public PasswordDialog(java.awt.Frame parent, boolean modal) {                super(parent, modal);        initComponents();        this.setSize(320, 144);                  Misc.centerFrame(this);    }    /** This method is called from within the constructor to     * initialize the form.     * WARNING: Do NOT modify this code. The content of this method is     * always regenerated by the Form Editor.     */    private void initComponents() {//GEN-BEGIN:initComponents        jLabel1 = new javax.swing.JLabel();        jButtonCancel = new javax.swing.JButton();        jButtonOK = new javax.swing.JButton();        jPasswordField = new javax.swing.JPasswordField();        getContentPane().setLayout(null);        setTitle("Add/modify field");        setModal(true);        setResizable(false);        addWindowListener(new java.awt.event.WindowAdapter() {            public void windowClosing(java.awt.event.WindowEvent evt) {                closeDialog(evt);            }        });        jLabel1.setFont(new java.awt.Font("Dialog", 0, 11));        jLabel1.setText("Password:");        getContentPane().add(jLabel1);        jLabel1.setBounds(4, 4, 250, 15);        jButtonCancel.setFont(new java.awt.Font("Dialog", 0, 11));        jButtonCancel.setMnemonic('c');        jButtonCancel.setText("Cancel");        jButtonCancel.addActionListener(new java.awt.event.ActionListener() {            public void actionPerformed(java.awt.event.ActionEvent evt) {                jButtonCancelActionPerformed(evt);            }        });        getContentPane().add(jButtonCancel);        jButtonCancel.setBounds(220, 52, 70, 25);        jButtonOK.setFont(new java.awt.Font("Dialog", 0, 11));        jButtonOK.setMnemonic('o');        jButtonOK.setText("OK");        jButtonOK.addActionListener(new java.awt.event.ActionListener() {            public void actionPerformed(java.awt.event.ActionEvent evt) {                jButtonOKActionPerformed(evt);            }        });        getContentPane().add(jButtonOK);        jButtonOK.setBounds(138, 52, 70, 25);        getContentPane().add(jPasswordField);        jPasswordField.setBounds(4, 20, 286, 24);        pack();    }//GEN-END:initComponents    private void jButtonCancelActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonCancelActionPerformed        setVisible(false);        this.setDialogResult( javax.swing.JOptionPane.CANCEL_OPTION);        dispose();    }//GEN-LAST:event_jButtonCancelActionPerformed    private void jButtonOKActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonOKActionPerformed                try {            password = this.jPasswordField.getDocument().getText(0,this.jPasswordField.getDocument().getLength());        } catch (Exception ex) {}        this.setDialogResult( javax.swing.JOptionPane.OK_OPTION);        dispose();    }//GEN-LAST:event_jButtonOKActionPerformed        /** Closes the dialog */    private void closeDialog(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_closeDialog        setVisible(false);        this.setDialogResult( javax.swing.JOptionPane.CLOSED_OPTION);        dispose();    }//GEN-LAST:event_closeDialog          /** Getter for property dialogResult.     * @return Value of property dialogResult.     *     */    public int getDialogResult() {        return dialogResult;    }        /** Setter for property dialogResult.     * @param dialogResult New value of property dialogResult.     *     */    public void setDialogResult(int dialogResult) {        this.dialogResult = dialogResult;    }        /** Getter for property password.     * @return Value of property password.     *     */    public java.lang.String getPassword() {        return password;    }        /** Setter for property password.     * @param password New value of property password.     *     */    public void setPassword(java.lang.String password) {        this.password = password;    }        // Variables declaration - do not modify//GEN-BEGIN:variables    private javax.swing.JButton jButtonCancel;    private javax.swing.JButton jButtonOK;    private javax.swing.JLabel jLabel1;    private javax.swing.JPasswordField jPasswordField;    // End of variables declaration//GEN-END:variables    private int dialogResult;        }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?