home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / applet / AppletStub.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  320 b   |  18 lines

  1. package java.applet;
  2.  
  3. import java.net.URL;
  4.  
  5. public interface AppletStub {
  6.    boolean isActive();
  7.  
  8.    URL getDocumentBase();
  9.  
  10.    URL getCodeBase();
  11.  
  12.    String getParameter(String var1);
  13.  
  14.    AppletContext getAppletContext();
  15.  
  16.    void appletResize(int var1, int var2);
  17. }
  18.