home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 January / PCO0198.ISO / browser / net_linx / java40.jar / netscape / applet / AppletPeer.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-03  |  469 b   |  22 lines

  1. package netscape.applet;
  2.  
  3. import java.awt.Window;
  4.  
  5. public interface AppletPeer {
  6.    Thread getAppletThread();
  7.  
  8.    void sendEvent(NEvent var1);
  9.  
  10.    void enterModal();
  11.  
  12.    void exitModal();
  13.  
  14.    void addTopLevelWindow(Window var1);
  15.  
  16.    void removeTopLevelWindow(Window var1);
  17.  
  18.    void removeEvents(Object var1);
  19.  
  20.    void coalesceEvent(NEvent var1);
  21. }
  22.