/*
 * LearnJava4.java
 *
 * Created on March 20, 2002, 12:47 AM
 */

/**
 *
 * @author  Pat
 */
public class LearnJava4 extends javax.swing.JFrame {
    
    /** Creates new form LearnJava4 */
    public LearnJava4() {
        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
        dial1 = new magicbeans.Dial();

        getContentPane().setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());

        addWindowListener(new java.awt.event.WindowAdapter() {
            public void windowClosing(java.awt.event.WindowEvent evt) {
                exitForm(evt);
            }
        });

        getContentPane().add(dial1, new org.netbeans.lib.awtextra.AbsoluteConstraints(30, 20, -1, -1));

        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 LearnJava4().show();
    }
    
    
    // Variables declaration - do not modify//GEN-BEGIN:variables
    private magicbeans.Dial dial1;
    // End of variables declaration//GEN-END:variables
    
}

