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

Java编程

开发平台:

Java

  1. package manpowersystem;
  2. /**
  3.  * <p>Title: </p>
  4.  * <p>Description: </p>
  5.  * <p>Copyright: Copyright (c) 2003</p>
  6.  * <p>Company: </p>
  7.  * @author not attributable
  8.  * @version 1.0
  9.  */
  10. import java.io.*;
  11. import java.util.*;
  12. import java.awt.*;
  13. import java.awt.event.*;
  14. import javax.swing.*;
  15. import javax.swing.event.*;
  16. import javax.swing.border.*;
  17. import javax.swing.table.*;
  18. import com.borland.jbcl.layout.*;
  19. public class StaticPanel extends JFrame {
  20.     XYLayout xYLayout1 = new XYLayout();
  21.     JButton jDelRecordButton = new JButton();
  22.     JButton jExitButton = new JButton();
  23.     JScrollPane jStaticScrollPane = new JScrollPane();
  24.     JTable jStaticTable = new JTable();
  25.     boolean bCanDel = true;
  26.     int intDelLines;         //显示所选的行数
  27.     String[] arrField = {"工 号", "姓 名", "上班时间", "下班时间","请假时间","备 注"};
  28.     Object[][] arrData = {};        //设定表格的字段
  29.     public StaticPanel() {
  30.         try {
  31.             jbInit();
  32.         }
  33.         catch ( Exception e ) {
  34.             e.printStackTrace();
  35.         }
  36.     }
  37.     public static void main( String[] args ) {
  38.         StaticPanel tablePanel1 = new StaticPanel();
  39.         tablePanel1.validate();
  40.         tablePanel1.setVisible( true );
  41.     }
  42.     private void jbInit() throws Exception {
  43.         DefaultTableModel tableModel = new DefaultTableModel( arrData, arrField );
  44.         jStaticTable = new JTable(tableModel);
  45.         jExitButton.addActionListener(new ActionListener(this));
  46.         jStaticScrollPane.getViewport().add( jStaticTable, null );
  47.         this.setTitle("信息统计页面");
  48.         this.getContentPane().setBackground( new Color( 210, 138, 177 ) );
  49.         this.getContentPane().setLayout( xYLayout1 );
  50.         jDelRecordButton.setBackground( new Color( 212, 158, 217 ) );
  51.         jDelRecordButton.setFont( new java.awt.Font( "DialogInput", 1, 16 ) );
  52.         jDelRecordButton.setText( "删除记录" );
  53.         jDelRecordButton.addActionListener( new java.awt.event.ActionListener() {
  54.             public void actionPerformed( ActionEvent e ) {
  55.                 jDelRecordButton_actionPerformed( e );
  56.             }
  57.         } );
  58.         jExitButton.setBackground( new Color( 212, 158, 217 ) );
  59.         jExitButton.setFont( new java.awt.Font( "DialogInput", 1, 16 ) );
  60.         jExitButton.setText( "退出" );
  61.         jExitButton.addActionListener( new java.awt.event.ActionListener() {
  62.             public void actionPerformed( ActionEvent e ) {
  63.                 jExitButton_actionPerformed( e );
  64.             }
  65.         } );
  66.         addWindowListener( new WindowAdapter() {
  67.             public void windowClosing( WindowEvent e ) {
  68.                 dispose();
  69.             }
  70.         } );
  71.         jStaticScrollPane.getViewport().setBackground(new Color(210, 138, 177));
  72.         this.getContentPane().add(jStaticScrollPane, new XYConstraints(4, 4, 462, 420));
  73.         this.getContentPane().add(jExitButton, new XYConstraints(266, 462, 102, 52));
  74.         this.getContentPane().add(jDelRecordButton,  new XYConstraints(85, 462, 102, 52));
  75.         jStaticScrollPane.getViewport().add(jStaticTable, null);
  76.         this.getContentPane().add(jStaticScrollPane,     new XYConstraints(4, 2, 463, 420));
  77.         this.setSize( 470, 550 );
  78.         this.setLocation( 230, 100 );
  79.         this.setResizable( false );
  80.     }
  81.     void jExitButton_actionPerformed( ActionEvent e ) {
  82.         this.dispose();
  83.     }
  84.     void jDelRecordButton_actionPerformed( ActionEvent e ) {
  85.         DelRecord();
  86.     }
  87.     public void DelRecord() {
  88.     }
  89.     public void UpdateRecord() {
  90.         Object[][] arrTmp = {}; //设定表格的字段
  91.         tableModel = new DefaultTableModel( arrTmp, arrField );
  92.         jRecordTable = new JTable( tableModel );
  93.         jTableScrollPane.getViewport().add( jRecordTable, null );
  94.         try {
  95.             RecordItem[] result = new RecordItem[ 100 ];
  96.             for ( int j = 0; j < 100; j++ )
  97.                 result[ j ] = new RecordItem();
  98.             result = database.AccessData();
  99.             for ( int i = 0; i < result.length; i++ ) {
  100.                 Object newdata[] = {result[ i ].GetEmployeeID(),
  101.                     result[ i ].GetEmployeeName(),
  102.                     result[ i ].GetOnWorkTime(),
  103.                     result[ i ].GetDescribe()};
  104.                 String strTmp = result[ i ].GetOnWorkTime();
  105.                 if ( strTmp.trim().length() == 0 )
  106.                     continue;
  107.                 tableModel.addRow( newdata );
  108.             }
  109.         }
  110.         catch ( Exception e ) {
  111.             e.printStackTrace();
  112.         }
  113.     }
  114. }
  115. class ActionListener implements java.awt.event.ActionListener {
  116.     StaticPanel adaptee;
  117.     ActionListener(StaticPanel adaptee) {
  118.         this.adaptee = adaptee;
  119.     }
  120.     public void actionPerformed(ActionEvent e) {
  121.         adaptee.jExitButton_actionPerformed(e);
  122.     }
  123. }