-
已过时。Applet API已被弃用。 有关详细信息,请参阅java.applet package documentation 。
@Deprecated(since="9") public interface AppletStub
当一个小程序第一次创建时,applet存根使用小程序的setStub
方法附加到它。 此存根用作应用程序正在运行的小程序和浏览器环境或小程序查看器环境之间的接口。- 从以下版本开始:
- 1.0
- 另请参见:
-
Applet.setStub(java.applet.AppletStub)
-
-
方法摘要
所有方法 接口方法 抽象方法 弃用的方法 Modifier and Type 方法 描述 void
appletResize(int width, int height)
已过时。当applet想要调整大小时调用。AppletContext
getAppletContext()
已过时。返回小程序的上下文。URL
getCodeBase()
已过时。获取基本URL。URL
getDocumentBase()
已过时。获取嵌入小程序的文档的URL。String
getParameter(String name)
已过时。返回HTML标签中命名参数的值。boolean
isActive()
已过时。确定小程序是否处于活动状态。
-
-
-
方法详细信息
-
isActive
boolean isActive()
已过时。确定小程序是否处于活动状态。 一个小程序在其start
方法被调用之前是活动的。 在它的stop
方法被调用之前它变得不活动。- 结果
-
true
如果小程序是活动的;false
否则。
-
getDocumentBase
URL getDocumentBase()
已过时。获取嵌入小程序的文档的URL。 例如,假设一个小程序包含在文档中:http://www.oracle.com/technetwork/java/index.html
http://www.oracle.com/technetwork/java/index.html
- 结果
-
包含该小程序的文档的
URL
。 - 另请参见:
-
getCodeBase()
-
getCodeBase
URL getCodeBase()
已过时。获取基本URL。 这是包含小程序的目录的URL。- 结果
-
包含该小程序的目录的基座
URL
。 - 另请参见:
-
getDocumentBase()
-
getParameter
String getParameter(String name)
已过时。返回HTML标签中命名参数的值。 例如,如果一个小程序被指定为<applet code="Clock" width=50 height=50> <param name=Color value="blue"> </applet>
那么拨打
getParameter("Color")
返回值"blue"
。- 参数
-
name
- 参数名称。 - 结果
-
命名参数的值,如果未设置,
null
。
-
getAppletContext
AppletContext getAppletContext()
已过时。返回小程序的上下文。- 结果
- 小程序的上下文。
-
appletResize
void appletResize(int width, int height)
已过时。当applet想要调整大小时调用。- 参数
-
width
- 小程序的新请求宽度。 -
height
- 小程序的新请求高度。
-
-