|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
public interface AppletStub
當 applet 第一次被創建時,使用 applet 的 setStub
方法把 applet stub 連接到它。此 stub 充當 applet 和瀏覽器環境或 applet viewer 環境之間的介面,應用程序在此環境中運行。
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 是否處於啟動狀態。 |
方法詳細資訊 |
---|
boolean isActive()
start
方法被調用前,applet 才處於啟動狀態。僅在 applet 的 stop
方法被調用前,applet 才變成非啟動狀態。
true
;否則返回 false
。URL getDocumentBase()
則該文檔基於:http://java.sun.com/products/jdk/1.2/index.html
http://java.sun.com/products/jdk/1.2/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
- 為 applet 新請求的寬度。height
- 為 applet 新請求的高度。
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。