Deprecated, for removal: This API element is subject to removal in a future version.
The Applet API is deprecated, no replacement.
当applet首次创建时,将使用applet的
setStub
方法将applet存根附加到它。此存根充当应用程序在其中运行的浏览器环境或applet查看器环境与applet之间的接口。
- 自版本:
- 1.0
- 另请参阅:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
appletResize
(int width, int height) 已弃用,将被移除:此API元素可能在将来的版本中被移除。当applet希望调整大小时调用。已弃用,将被移除:此API元素可能在将来的版本中被移除。返回applet的上下文。已弃用,将被移除:此API元素可能在将来的版本中被移除。获取基本URL
。已弃用,将被移除:此API元素可能在将来的版本中被移除。获取嵌入applet的文档的URL
。getParameter
(String name) 已弃用,将被移除:此API元素可能在将来的版本中被移除。返回HTML标记中命名参数的值。boolean
isActive()
已弃用,将被移除:此API元素可能在将来的版本中被移除。确定applet是否处于活动状态。
-
Method Details
-
isActive
boolean isActive()Deprecated, for removal: This API element is subject to removal in a future version.确定applet是否处于活动状态。在调用其start
方法之前,applet处于活动状态。在调用其stop
方法之前,它变为非活动状态。- 返回:
-
如果applet处于活动状态,则返回
true
;否则返回false
-
getDocumentBase
URL getDocumentBase()Deprecated, for removal: This API element is subject to removal in a future version.获取嵌入applet的文档的URL
。例如,假设一个applet包含在文档中:http://www.oracle.com/technetwork/java/index.html
http://www.oracle.com/technetwork/java/index.html
- 返回:
-
包含applet的文档的
URL
- 另请参阅:
-
getCodeBase
URL getCodeBase()Deprecated, for removal: This API element is subject to removal in a future version.获取基本URL
。这是包含applet的目录的URL
。- 返回:
-
包含applet的目录的基本
URL
- 另请参阅:
-
getParameter
Deprecated, for removal: This API element is subject to removal in a future version.返回HTML标记中命名参数的值。例如,如果一个applet被指定为<applet code="Clock" width=50 height=50> <param name=Color value="blue"> </applet>
那么调用
getParameter("Color")
将返回值"blue"
。- 参数:
-
name
- 参数名称 - 返回:
-
命名参数的值,如果未设置则返回
null
-
getAppletContext
AppletContext getAppletContext()Deprecated, for removal: This API element is subject to removal in a future version.返回applet的上下文。- 返回:
- applet的上下文
-
appletResize
void appletResize(int width, int height) Deprecated, for removal: This API element is subject to removal in a future version.当applet希望调整大小时调用。- 参数:
-
width
- applet的新请求宽度 -
height
- applet的新请求高度
-