-
public interface AppletStub
When an applet is first created, an applet stub is attached to it using the applet'ssetStub
method. This stub serves as the interface between the applet and the browser environment or applet viewer environment in which the application is running.- Since:
- JDK1.0
- See Also:
Applet.setStub(java.applet.AppletStub)
-
-
Method Summary
Methods Modifier and Type Method and Description void
appletResize(int width, int height)
Called when the applet wants to be resized.AppletContext
getAppletContext()
Returns the applet's context.URL
getCodeBase()
Gets the base URL.URL
getDocumentBase()
Gets the URL of the document in which the applet is embedded.String
getParameter(String name)
Returns the value of the named parameter in the HTML tag.boolean
isActive()
Determines if the applet is active.
-
-
-
Method Detail
-
isActive
boolean isActive()
Determines if the applet is active. An applet is active just before itsstart
method is called. It becomes inactive just before itsstop
method is called.- Returns:
true
if the applet is active;false
otherwise.
-
getDocumentBase
URL getDocumentBase()
Gets the URL of the document in which the applet is embedded. For example, suppose an applet is contained within the document:
The document base is:http://java.sun.com/products/jdk/1.2/index.html
http://java.sun.com/products/jdk/1.2/index.html
- Returns:
- the
URL
of the document that contains the applet. - See Also:
getCodeBase()
-
getCodeBase
URL getCodeBase()
Gets the base URL. This is the URL of the directory which contains the applet.- Returns:
- the base
URL
of the directory which contains the applet. - See Also:
getDocumentBase()
-
getParameter
String getParameter(String name)
Returns the value of the named parameter in the HTML tag. For example, if an applet is specified as<applet code="Clock" width=50 height=50> <param name=Color value="blue"> </applet>
then a call to
getParameter("Color")
returns the value"blue"
.- Parameters:
name
- a parameter name.- Returns:
- the value of the named parameter, or null if not set.
-
getAppletContext
AppletContext getAppletContext()
Returns the applet's context.- Returns:
- the applet's context.
-
appletResize
void appletResize(int width, int height)
Called when the applet wants to be resized.- Parameters:
width
- the new requested width for the applet.height
- the new requested height for the applet.
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/applet/appletstub.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.