/*
 * WebApp.java
 *
 * Created on March 27, 2001, 1:19 PM
 */



/**
 *
 * @author  G_GALLA1
 * @version 
 */
public class WebApp extends javax.swing.JFrame {

    /** Creates new form WebApp */
    public WebApp() {
        initComponents ();
        pack ();
        setBounds( 200, 25, 400, 400);
        HtmlPane html = new HtmlPane(a);
        setContentPane  }

    /** 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 FormEditor.
     */
        private void initComponents () {//GEN-BEGIN:initComponents
            addWindowListener (new java.awt.event.WindowAdapter () {
                public void windowClosing (java.awt.event.WindowEvent evt) {
                    exitForm (evt);
                }
            }
            );

        }//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 WebApp ().show ();
    }


    // Variables declaration - do not modify//GEN-BEGIN:variables
    // End of variables declaration//GEN-END:variables

}