/* * URLKoppling2.java * * Created on den 30 augusti 2001, 17:46 */ package ip1.u2.b; /** * * @author h&m */ public class URLKoppling2 extends javax.swing.JApplet { // Skapar en ny URLKoppling2 public URLKoppling2() { 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 interpretedWebPane1 = new ip1.u2.InterpretedWebPane(); interpretedWebPane1.setUrlString("http://localhost"); getContentPane().add(interpretedWebPane1, java.awt.BorderLayout.CENTER); }//GEN-END:initComponents // mainmetoden, skapar en ny instans av denna klass public static void main(String args[]) { new URLKoppling2().show(); } // Variables declaration - do not modify//GEN-BEGIN:variables private ip1.u2.InterpretedWebPane interpretedWebPane1; // End of variables declaration//GEN-END:variables }