SetMapDialog.java
上传用户:njlgjx
上传日期:2022-08-07
资源大小:9105k
文件大小:2k
源码类别:

图形图象

开发平台:

Java

  1. /*
  2.  * SetMapDialog.java
  3.  *
  4.  * Created on 2008年6月24日, 下午4:34
  5.  */
  6. package com.mwq.map.frame;
  7. /**
  8.  *
  9.  * @author  Administrator
  10.  */
  11. public class SetMapDialog extends javax.swing.JDialog {
  12.     /** Creates new form SetMapDialog */
  13.     public SetMapDialog(java.awt.Frame parent, boolean modal) {
  14.         super(parent, modal);
  15.         initComponents();
  16.     }
  17.     /** This method is called from within the constructor to
  18.      * initialize the form.
  19.      * WARNING: Do NOT modify this code. The content of this method is
  20.      * always regenerated by the Form Editor.
  21.      */
  22.     @SuppressWarnings("unchecked")
  23.     // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
  24.     private void initComponents() {
  25.         setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
  26.         javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
  27.         getContentPane().setLayout(layout);
  28.         layout.setHorizontalGroup(
  29.             layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
  30.             .addGap(0, 400, Short.MAX_VALUE)
  31.         );
  32.         layout.setVerticalGroup(
  33.             layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
  34.             .addGap(0, 300, Short.MAX_VALUE)
  35.         );
  36.         pack();
  37.     }// </editor-fold>//GEN-END:initComponents
  38.     /**
  39.     * @param args the command line arguments
  40.     */
  41.     public static void main(String args[]) {
  42.         java.awt.EventQueue.invokeLater(new Runnable() {
  43.             public void run() {
  44.                 SetMapDialog dialog = new SetMapDialog(new javax.swing.JFrame(), true);
  45.                 dialog.addWindowListener(new java.awt.event.WindowAdapter() {
  46.                     public void windowClosing(java.awt.event.WindowEvent e) {
  47.                         System.exit(0);
  48.                     }
  49.                 });
  50.                 dialog.setVisible(true);
  51.             }
  52.         });
  53.     }
  54.     // Variables declaration - do not modify//GEN-BEGIN:variables
  55.     // End of variables declaration//GEN-END:variables
  56. }