java.applet
public interface AppletStub
Since: 1.0
See Also: setStub
UNKNOWN: updated to 1.4
Method Summary | |
---|---|
void | appletResize(int width, int height)
Requests that the applet window for this applet be resized.
|
AppletContext | getAppletContext()
Returns the applet context for this applet.
|
URL | getCodeBase()
Returns the URL of the code base for this applet.
|
URL | getDocumentBase()
Returns the basename URL of the document this applet is embedded in. |
String | getParameter(String name)
Returns the value of the specified parameter that was specified in
the <APPLET> tag for this applet.
|
boolean | isActive()
Tests whether or not this applet is currently active. |
Parameters: width the new width in pixels height the new height in pixels
Returns: the applet context for this applet
Returns: the URL of the code base for this applet
Returns: the URL of the document this applet is embedded in
See Also: getCodeBase
<APPLET>
tag for this applet.
Parameters: name the parameter name
Returns: the parameter value, or null if the parameter does not exist
Throws: NullPointerException if name is null
Returns: true
if this applet is active