A Frame that runs an Applet within itself, making it possible for an applet to run as an application. Usage:
public class MyApplet extends Applet { public static void main(String args[]) { MyApplet applet = new MyApplet(); new AppletFrame("My Applet Running As An App", applet, 640, 480); } ... }@author Alan Liu
|
|