// // import java.awt.*; import javax.swing.*; public class BoringApplet3 extends JApplet { public void init() { getContentPane().add(new JLabel("Boring Applet!")); } public static void main(String[] args) { JApplet applet = new BoringApplet3(); JFrame frame = new JFrame("BoringApplet3"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.getContentPane().add(applet); frame.setSize(200, 200); applet.init(); applet.start(); frame.setVisible(true); } } // class BoringApplet3