home *** CD-ROM | disk | FTP | other *** search
- package vrml;
-
- import vrml.exceptions.InvalidEventInException;
- import vrml.exceptions.InvalidEventOutException;
- import vrml.exceptions.InvalidFieldException;
- import vrml.fields.ConstField;
-
- public abstract class Script implements Node {
- public native void processEvents(Events[] var1) throws Exception;
-
- public abstract void eventsProcessed() throws Exception;
-
- protected native Field getEventOut(String var1) throws InvalidEventOutException;
-
- protected native Field getField(String var1) throws InvalidFieldException;
-
- public native ConstField getValue(String var1) throws InvalidFieldException;
-
- public native void postEventIn(String var1, Field var2) throws InvalidEventInException;
- }
-