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