AppletStubNameAppletStub
DescriptionAppletStub is an interface that provides the means to get information from the run-time browser environment. Interface Definition
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(); } Interface MethodsappletResizepublic abstract void appletResize (int width, int height)
getAppletContextpublic abstract AppletContext getAppletContext()
getCodeBasepublic abstract URL getCodeBase()
getDocumentBasepublic abstract URL getDocumentBase()
getParameterpublic abstract String getParameter (String name)
isActivepublic abstract boolean isActive()
See AlsoAppletContext, Object, String, URL |
|