AppletStub is an interface that provides the means to get information from the run-time browser environment.
public abstract interface java.applet.AppletStub { // Interface Methods public abstract void appletResize (int width, int height); public abstract AppletContext getAppletContext(); public abstract URL getCodeBase(); public abstract URL getDocumentBase(); public abstract String getParameter (String name); public abstract boolean isActive(); }
Requested new width for applet.
Requested new height for applet.
Changes the size of the applet.
Current AppletContext of the applet.
Complete URL for the applet's .class file.
Complete URL for the applet's .html file.
Name of a <PARAM> tag.
Value associated with the parameter.
Gets a parameter value from the <PARAM> tag(s) of the applet.
true if the applet is active, false otherwise
Returns current state of the applet.
AppletContext, Object, String, URL