/*
 * About_Test_Tool_Window.java
 *
 * Created on October 19, 2003, 8:22 AM
 */

/**
 *
 * @author  Tyler Vodak
 */
public class About_Test_Tool_Window extends javax.swing.JFrame {
    
    /** Creates new form About_Test_Tool_Window */
    public About_Test_Tool_Window() {
        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
        jTextArea1 = new javax.swing.JTextArea();
        jTextArea2 = new javax.swing.JTextArea();
        jTextArea3 = new javax.swing.JTextArea();
        jPanel1 = new javax.swing.JPanel();
        jButton1 = new javax.swing.JButton();

        setTitle("About Test Tool");
        addWindowListener(new java.awt.event.WindowAdapter() {
            public void windowClosing(java.awt.event.WindowEvent evt) {
                exitForm(evt);
            }
        });

        jTextArea1.setBackground(new java.awt.Color(204, 204, 204));
        jTextArea1.setEditable(false);
        jTextArea1.setFont(new java.awt.Font("Dialog", 1, 14));
        jTextArea1.setText("Test Tool is a copyrighted trademark of team Bang in CPE 205 402 and of\nCal Poly State University. All rights reserved for development and distribution.\n\n\tTeam: Bang\n\t\n\tProject: Test Tool\n\n\tVersion:\n\n\tPlatform:\n\n\tYear: 2003, 2004");
        getContentPane().add(jTextArea1, java.awt.BorderLayout.CENTER);

        jTextArea2.setBackground(new java.awt.Color(204, 204, 204));
        jTextArea2.setEditable(false);
        getContentPane().add(jTextArea2, java.awt.BorderLayout.NORTH);

        jTextArea3.setEditable(false);
        getContentPane().add(jTextArea3, java.awt.BorderLayout.SOUTH);

        jButton1.setText("Close");
        jPanel1.add(jButton1);

        getContentPane().add(jPanel1, java.awt.BorderLayout.SOUTH);

        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_Window().show();
    }
    
    
    // Variables declaration - do not modify//GEN-BEGIN:variables
    private javax.swing.JButton jButton1;
    private javax.swing.JPanel jPanel1;
    private javax.swing.JTextArea jTextArea1;
    private javax.swing.JTextArea jTextArea2;
    private javax.swing.JTextArea jTextArea3;
    // End of variables declaration//GEN-END:variables
    
}