QueryOrderForm.java
上传用户:liming9091
上传日期:2014-10-27
资源大小:3376k
文件大小:4k
源码类别:

Java编程

开发平台:

Java

  1. package uml_gaokai;
  2. import java.awt.*;
  3. import javax.swing.*;
  4. import com.borland.jbcl.layout.*;
  5. import java.awt.event.*;
  6. /**
  7.  * <p>Title: </p>
  8.  * <p>Description: </p>
  9.  * <p>Copyright: Copyright (c) 2003</p>
  10.  * <p>Company: </p>
  11.  * @author unascribed
  12.  * @version 1.0
  13.  */
  14. public class QueryOrderForm extends JDialog {
  15.   private int testQuery =0 ;
  16.   private JPanel jPanel1 = new JPanel();
  17.   private XYLayout xYLayout1 = new XYLayout();
  18.   private JLabel jLabel1 = new JLabel();
  19.   private JLabel jLabel2 = new JLabel();
  20.   private JLabel jLabel3 = new JLabel();
  21.   private JLabel jLabel4 = new JLabel();
  22.   private JTextField jTextField1 = new JTextField();
  23.   private JTextField jTextField2 = new JTextField();
  24.   private JTextField jTextField3 = new JTextField();
  25.   private JTextField jTextField4 = new JTextField();
  26.   private JButton jButton1 = new JButton();
  27.   private JButton jButton2 = new JButton();
  28.   private JButton jButton3 = new JButton();
  29.   private JButton jButton4 = new JButton();
  30.   private JButton jButton5 = new JButton();
  31.   public QueryOrderForm(Frame frame, String title, boolean modal) {
  32.     super(frame, title, modal);
  33.     try {
  34.       jbInit();
  35.       pack();
  36.     }
  37.     catch(Exception ex) {
  38.       ex.printStackTrace();
  39.     }
  40.   }
  41.   public QueryOrderForm() {
  42.     this(null, "", false);
  43.   }
  44.   private void jbInit() throws Exception {
  45.     jPanel1.setLayout(xYLayout1);
  46.     jLabel1.setText("订货商品名称");
  47.     jLabel2.setText("订货厂商");
  48.     jLabel3.setText("订货日期");
  49.     jLabel4.setText("订货状态");
  50.     jButton1.setText("查询");
  51.     jButton1.addActionListener(new java.awt.event.ActionListener() {
  52.       public void actionPerformed(ActionEvent e) {
  53.         jButton1_actionPerformed(e);
  54.       }
  55.     });
  56.     jButton2.setText("查询");
  57.     jButton2.addActionListener(new java.awt.event.ActionListener() {
  58.       public void actionPerformed(ActionEvent e) {
  59.         jButton2_actionPerformed(e);
  60.       }
  61.     });
  62.     jButton3.setText("查询");
  63.     jButton3.addActionListener(new java.awt.event.ActionListener() {
  64.       public void actionPerformed(ActionEvent e) {
  65.         jButton3_actionPerformed(e);
  66.       }
  67.     });
  68.     jButton4.setText("查询");
  69.     jButton4.addActionListener(new java.awt.event.ActionListener() {
  70.       public void actionPerformed(ActionEvent e) {
  71.         jButton4_actionPerformed(e);
  72.       }
  73.     });
  74.     jButton5.setText("退出");
  75.     jButton5.addActionListener(new java.awt.event.ActionListener() {
  76.       public void actionPerformed(ActionEvent e) {
  77.         jButton5_actionPerformed(e);
  78.       }
  79.     });
  80.     this.getContentPane().add(jPanel1, BorderLayout.CENTER);
  81.     jPanel1.add(jTextField1,    new XYConstraints(122, 20, 110, 24));
  82.     jPanel1.add(jTextField4,     new XYConstraints(122, 156, 109, 25));
  83.     jPanel1.add(jButton1,   new XYConstraints(281, 20, 61, 23));
  84.     jPanel1.add(jButton3,     new XYConstraints(282, 112, 60, 21));
  85.     jPanel1.add(jButton4,     new XYConstraints(283, 156, 60, 21));
  86.     jPanel1.add(jButton2,      new XYConstraints(281, 65, 61, 22));
  87.     jPanel1.add(jLabel1,  new XYConstraints(28, 20, 92, 24));
  88.     jPanel1.add(jTextField2,     new XYConstraints(122, 65, 111, 25));
  89.     jPanel1.add(jLabel3,     new XYConstraints(28, 112, 92, 24));
  90.     jPanel1.add(jTextField3,     new XYConstraints(122, 112, 111, 25));
  91.     jPanel1.add(jLabel4,    new XYConstraints(28, 156, 96, 24));
  92.     jPanel1.add(jLabel2,   new XYConstraints(28, 65, 95, 26));
  93.     jPanel1.add(jButton5,  new XYConstraints(291, 205, 75, 22));
  94.   }
  95.   public void cancel(){
  96.     dispose() ;
  97.   }
  98.   void jButton1_actionPerformed(ActionEvent e) {
  99.     testQuery = 1 ;
  100.     cancel() ;
  101.   }
  102.   //cancel
  103.   void jButton5_actionPerformed(ActionEvent e) {
  104.     cancel() ;
  105.   }
  106.   void jButton2_actionPerformed(ActionEvent e) {
  107.     testQuery = 2 ;
  108.     cancel() ;
  109.   }
  110.   void jButton3_actionPerformed(ActionEvent e) {
  111.     testQuery = 3 ;
  112.     cancel() ;
  113.   }
  114.   void jButton4_actionPerformed(ActionEvent e) {
  115.     testQuery = 4 ;
  116.     cancel() ;
  117.   }
  118.   public String getBuyerGoodsName(){
  119.     return jTextField1.getText( ) ;
  120.   }
  121.   public String getBuyerManufacturer(){
  122.     return jTextField2.getText() ;
  123.   }
  124.   public String getBuyerDate(){
  125.     return jTextField3.getText() ;
  126.   }
  127.   public String getBuyerStatus(){
  128.     return jTextField4.getText() ;
  129.   }
  130.   public int gettestQuery(){
  131.     return testQuery ;
  132.   }
  133. }