java.applet

Interface AppletStub


  • public interface AppletStub
    When an applet is first created, an applet stub is attached to it using the applet's setStub 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 Detail

      • isActive

        boolean isActive()
        Determines if the applet is active. An applet is active just before its start method is called. It becomes inactive just before its stop 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:
            http://java.sun.com/products/jdk/1.2/index.html
         
        The document base is:
            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.

Traduction non disponible

Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.

Document créé le 30/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/applet/AppletStub.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :fr Manuel PHP : https://docs.oracle.com, AppletStub

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.

Table des matières Haut