/** * HF Receiver Controller Applet 1.0.0 * @author Robert J Morton YE572246C * @version 25 November 2001, revanped 16 November 2007, Swing Version 31 January 2012 * @copyright Robert J Morton (all rights reserved) */ /* This is the Applet's background image panel */ import javax.swing.*; // the Swing GUI system import java.awt.*; // abstract windiwing toolkit public class worldmap extends JPanel { private static final long serialVersionUID = 118L; // what the hell this is for, I don't know! hfbrx hf; worldmap(hfbrx hf) { this.hf = hf; } // draw the background image onto the applet canvas public void paint(Graphics g) { g.drawImage(hfbrx.IMG1,0,0,this); } }