home *** CD-ROM | disk | FTP | other *** search
/ The Best of Windows 95.com 1996 September / WIN95_09962.iso / vrml / MWE105.ZIP / vrml / EventIn.java < prev    next >
Text File  |  1996-02-13  |  167b  |  10 lines

  1. package vrml;
  2.  
  3. import vrml.fields.*;
  4.  
  5. public interface EventIn {
  6.   public String getName();
  7.   public SFTime getTimeStamp();
  8.   public ConstField getValue();
  9. }
  10.