JavaTM 2 Platform
Standard Ed. 6

java.applet
接口 AppletStub


public interface AppletStub

当 applet 第一次被创建时,使用 applet 的 setStub 方法把 applet stub 连接到它。此 stub 充当 applet 和浏览器环境或 applet viewer 环境之间的接口,应用程序在此环境中运行。

从以下版本开始:
JDK1.0
另请参见:
Applet.setStub(java.applet.AppletStub)

方法摘要
 void appletResize(int width, int height)
          当 applet 想要重新调整大小时调用。
 AppletContext getAppletContext()
          返回 applet 的上下文。
 URL getCodeBase()
          获取基 URL。
 URL getDocumentBase()
          获取嵌入 applet 的文档的 URL。
 String getParameter(String name)
          返回 HTML 标记中命名参数的值。
 boolean isActive()
          确定 applet 是否处于激活状态。
 

方法详细信息

isActive

boolean isActive()
确定 applet 是否处于激活状态。仅在 applet 的 start 方法被调用前,applet 才处于激活状态。仅在 applet 的 stop 方法被调用前,applet 才变成非激活状态。

返回:
如果 applet 处于激活状态,则返回 true;否则返回 false

getDocumentBase

URL getDocumentBase()
获取嵌入 applet 的文档的 URL。例如,假定 applet 包含在下面的文档中:
    http://java.sun.com/products/jdk/1.2/index.html
 
则该文档基于:
    http://java.sun.com/products/jdk/1.2/index.html
 

返回:
包含 applet 的文档的 URL
另请参见:
getCodeBase()

getCodeBase

URL getCodeBase()
获取基 URL。这是包含 applet 的目录的 URL。

返回:
包含 applet 的目录的基 URL
另请参见:
getDocumentBase()

getParameter

String getParameter(String name)
返回 HTML 标记中命名参数的值。例如,如果 applet 被指定为:
 <applet code="Clock" width=50 height=50>
 <param name=Color value="blue">
 </applet>
 

则对 getParameter("Color") 的调用将返回值 "blue"

参数:
name - 参数名。
返回:
命名参数的值,如果没有设置,则为 null

getAppletContext

AppletContext getAppletContext()
返回 applet 的上下文。

返回:
applet 上下文。

appletResize

void appletResize(int width,
                  int height)
当 applet 想要重新调整大小时调用。

参数:
width - 为 applet 新请求的宽度。
height - 为 applet 新请求的高度。

JavaTM 2 Platform
Standard Ed. 6

提交错误或意见

版权所有 2008 Sun Microsystems, Inc. 保留所有权利。请遵守GNU General Public License, version 2 only