AppletContext is an interface that provides the means to control the browser environment in which the applet is running.
public abstract interface java.applet.AppletContext { // Interface Methods public abstract Applet getApplet (String name); public abstract Enumeration getApplets(); public abstract AudioClip getAudioClip (URL url); public abstract Image getImage (URL url); public abstract void showDocument (URL url); public abstract void showDocument (URL url, String frame); public abstract void showStatus (String message); }
Name of applet to locate.
Applet fetched.
Gets a reference to another executing applet.
List of applets executing.
Gets references to all executing applets.
Location of an audio file.
AudioClip fetched.
Loads an audio file.
Location of an image file.
Image fetched.
Loads an image file.
New web page to display.
Changes the displayed web page.
New web page to display.
Name of the frame in which to display the new page.
Displays a web page in another frame.
Message to display.
Displays a message on the status line of the browser.
Applet, AudioClip, Enumeration, Image, Object, String, URL