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

  1. package vrml;
  2.  
  3. import vrml.exceptions.InvalidEventInException;
  4. import vrml.exceptions.InvalidFieldException;
  5. import vrml.fields.ConstField;
  6.  
  7. public interface Node {
  8.    ConstField getValue(String var1) throws InvalidFieldException;
  9.  
  10.    void postEventIn(String var1, Field var2) throws InvalidEventInException;
  11. }
  12.