/*
 * Test.java
 *
 * Created on December 6, 2003, 2:58 AM
 */

/**
 *
 * @author  linyuan
 */
public class Test extends javax.swing.JApplet {
    
    /** Creates new form Test */
    public Test() {
        initComponents();
        graphPanel=new GraphPanel();
        graphPanel.setSize(600,600);
        getContentPane().add(graphPanel,java.awt.BorderLayout.CENTER);
    }
    
    /** 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

    }//GEN-END:initComponents
    
    
    // Variables declaration - do not modify//GEN-BEGIN:variables
    // End of variables declaration//GEN-END:variables
    GraphPanel graphPanel;   
}
