1 | vrml.Event object is defined as follows: |
2 | public class Event implements Cloneable { |
3 | public String getName(); // name of the event |
4 | public ConstField getValue(); // value of the event |
5 | public double getTimeStamp();// timestamp of the event |
6 | // other methods ... |
7 | } |
8 | developer can overload processEvents( ) or processEvent(vrml.Event evt) since default behavior in processEvents() is to call processEvent() for each received event. |