home *** CD-ROM | disk | FTP | other *** search
/ PC User 2001 August / APC_Aug2001_CD2.iso / features / web_dev / files / mwjpp516.exe / %MAINDIR% / Examples / vrml / Script.class (.txt) < prev    next >
Encoding:
Java Class File  |  2001-06-19  |  772 b   |  21 lines

  1. package vrml;
  2.  
  3. import vrml.exceptions.InvalidEventInException;
  4. import vrml.exceptions.InvalidEventOutException;
  5. import vrml.exceptions.InvalidFieldException;
  6. import vrml.fields.ConstField;
  7.  
  8. public abstract class Script implements Node {
  9.    public native void processEvents(Events[] var1) throws Exception;
  10.  
  11.    public abstract void eventsProcessed() throws Exception;
  12.  
  13.    protected native Field getEventOut(String var1) throws InvalidEventOutException;
  14.  
  15.    protected native Field getField(String var1) throws InvalidFieldException;
  16.  
  17.    public native ConstField getValue(String var1) throws InvalidFieldException;
  18.  
  19.    public native void postEventIn(String var1, Field var2) throws InvalidEventInException;
  20. }
  21.