AppletStub

Name

AppletStub

[Graphic: Figure from the text]

Description

AppletStub 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 Methods

appletResize

public abstract void appletResize (int width, int height)

getAppletContext

public abstract AppletContext getAppletContext()

getCodeBase

public abstract URL getCodeBase()

getDocumentBase

public abstract URL getDocumentBase()

getParameter

public abstract String getParameter (String name)

isActive

public abstract boolean isActive()

See Also

AppletContext, Object, String, URL