home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 July / PCO_07_97.ISO / NET_COM / cc32e40.exe / cosmo.z / NPCOSMOP.ZIP / vrml / external / Node.class (.txt) < prev   
Encoding:
Java Class File  |  1997-01-09  |  661 b   |  16 lines

  1. package vrml.external;
  2.  
  3. import netscape.plugin.Plugin;
  4. import vrml.external.exception.InvalidEventInException;
  5. import vrml.external.exception.InvalidEventOutException;
  6. import vrml.external.field.EventIn;
  7. import vrml.external.field.EventOut;
  8.  
  9. public class Node extends Plugin {
  10.    public native String getType();
  11.  
  12.    public native EventIn getEventIn(String var1) throws InvalidEventInException;
  13.  
  14.    public native EventOut getEventOut(String var1) throws InvalidEventOutException;
  15. }
  16.