Interface java.applet.AppletStub



package java.applet;

import java.net.URL;

public interface AppletStub {

    // Méthodes d'instance publiques
    void appletResize(int width, int height);
    AppletContext getAppletContext();
    URL getCodeBase();
    URL getDocumentBase();
    String getParameter(String name);
    boolean isActive();
}

Christophe Merlet
redfox@redfoxcenter.org
©Tous droits réservés
5 septembre 1998