Interface java.applet.AppletStub
All Packages Class Hierarchy This Package Previous Next Index
Interface java.applet.AppletStub
- public interface AppletStub
- extends Object
This interface is used to implement an applet viewer. It is not
normally used by applet programmers.
- appletResize(int, int)
- Called when the applet wants to be resized.
- getAppletContext()
- Gets a handler to the applet's context.
- getCodeBase()
- Gets the base URL.
- getDocumentBase()
- Gets the document URL.
- getParameter(String)
- Gets a parameter of the applet.
- isActive()
- Returns true if the applet is active.
isActive
public abstract boolean isActive()
- Returns true if the applet is active.
getDocumentBase
public abstract URL getDocumentBase()
- Gets the document URL.
getCodeBase
public abstract URL getCodeBase()
- Gets the base URL.
getParameter
public abstract String getParameter(String name)
- Gets a parameter of the applet.
getAppletContext
public abstract AppletContext getAppletContext()
- Gets a handler to the applet's context.
appletResize
public abstract void appletResize(int width,
int height)
- Called when the applet wants to be resized.
All Packages Class Hierarchy This Package Previous Next Index