/* * About_test_tool.java * * Created on October 18, 2003, 3:11 PM */ /** * * @author Minh Nguyen */ public class About_test_tool extends javax.swing.JFrame { /** Creates new form About_test_tool */ public About_test_tool() { initComponents(); } /** 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(); jTextArea1 = new javax.swing.JTextArea(); jScrollBar1 = new javax.swing.JScrollBar(); addWindowListener(new java.awt.event.WindowAdapter() { public void windowClosing(java.awt.event.WindowEvent evt) { exitForm(evt); } }); jLabel1.setHorizontalAlignment(javax.swing.SwingConstants.CENTER); jLabel1.setText("About Test Tool"); getContentPane().add(jLabel1, java.awt.BorderLayout.NORTH); jTextArea1.setText("Test Tool is a test generation software designed by Cal Polytechnic's\nCSC 402 and CSC 205 students. This software is used by professors\nto help speed up the test making, taking, and grading process. More \ninformation will be available through our website at\nwww.calpoly.edu/~bang. Visit us to find more of our great products\nsuch as E-class and Grader tools."); getContentPane().add(jTextArea1, java.awt.BorderLayout.CENTER); getContentPane().add(jScrollBar1, java.awt.BorderLayout.EAST); pack(); }//GEN-END:initComponents /** Exit the Application */ private void exitForm(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_exitForm System.exit(0); }//GEN-LAST:event_exitForm /** * @param args the command line arguments */ public static void main(String args[]) { new About_test_tool().show(); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JLabel jLabel1; private javax.swing.JScrollBar jScrollBar1; private javax.swing.JTextArea jTextArea1; // End of variables declaration//GEN-END:variables }