/** * * @author pquiring * * Created : Oct 9, 2013 */ import javax.swing.*; import javaforce.*; public class PaintApplet extends javax.swing.JApplet { /** * Initializes the applet PaintApplet */ @Override public void init() { /* Create and display the applet */ This = this; try { java.awt.EventQueue.invokeAndWait(new Runnable() { public void run() { initComponents(); setContentPane(panel); Menu.create(This, panel); } }); } catch (Exception ex) { ex.printStackTrace(); } JF.loadCerts(getClass().getResourceAsStream("javaforce.crt") , getClass().getResourceAsStream("jfpaint.crt"), "jfpaint.sourceforge.net"); } public void destroy() { System.exit(0); } /** * 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. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGap(0, 400, Short.MAX_VALUE) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGap(0, 300, Short.MAX_VALUE) ); }// </editor-fold>//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables // End of variables declaration//GEN-END:variables MainPanel panel = new MainPanel(null, PaintApplet.this); JApplet This; }