package ptft; /* * ptft.java * * Created on May 10, 2004, 5:38 PM */ import javax.swing.*; import java.awt.*; /** * The PTFT applet. * * @author Will Braynen */ public final class JPtftApplet extends JApplet { /** Initializes the applet ptft */ public void init() { // try to change the look and feel try { UIManager.setLookAndFeel( UIManager.getSystemLookAndFeelClassName()); } catch (Exception e) { } initComponents(); } /** This method is called from within the init() method 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 jPtftPanel1 = new ptft.JPtftPanel(); getContentPane().add(jPtftPanel1, java.awt.BorderLayout.CENTER); }//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private ptft.JPtftPanel jPtftPanel1; // End of variables declaration//GEN-END:variables }