public interface AppletStub
setStub
方法附加到它。
此存根用作应用程序正在运行的小程序和浏览器环境或小程序查看器环境之间的接口。
Applet.setStub(java.applet.AppletStub)
Modifier and Type | Method and Description |
---|---|
void |
appletResize(int width, int height)
当applet想要调整大小时调用。
|
AppletContext |
getAppletContext()
返回小程序的上下文。
|
URL |
getCodeBase()
获取基本URL。
|
URL |
getDocumentBase()
获取嵌入小程序的文档的URL。
|
String |
getParameter(String name)
返回HTML标签中命名参数的值。
|
boolean |
isActive()
确定小程序是否处于活动状态。
|
boolean isActive()
start
方法被调用之前是活动的。
它在stop
方法被调用之前变得不活动。
true
如果小程序是活动的;
false
否则。
URL getDocumentBase()
文件基础是:http://www.oracle.com/technetwork/java/index.html
http://www.oracle.com/technetwork/java/index.html
URL
。
getCodeBase()
URL getCodeBase()
URL
。
getDocumentBase()
String getParameter(String name)
<applet code="Clock" width=50 height=50> <param name=Color value="blue"> </applet>
那么电话getParameter("Color")
返回值"blue"
。
name
- 参数名称。
AppletContext getAppletContext()
void appletResize(int width, int height)
width
- 小程序的新请求宽度。
height
- the new requested height for the applet.
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.