Package org.xj3d.ui.construct.event
Class RecorderEvent
java.lang.Object
java.util.EventObject
org.xj3d.ui.construct.event.RecorderEvent
- All Implemented Interfaces:
Serializable
The event object for distributing event notification.
- Version:
- $Revision: 1.1 $
- Author:
- Rex Melton
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intEvent id indicating that recording has been initiatedstatic final intEvent id indicating that recording has completed successfullyfinal intThe number of frames recordedfinal intThe event idFields inherited from class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionRecorderEvent(Object source, int id, int frames) Construct aRecorderEventobject. -
Method Summary
Methods inherited from class java.util.EventObject
getSource, toString
-
Field Details
-
ACTIVE
public static final int ACTIVEEvent id indicating that recording has been initiated- See Also:
-
COMPLETE
public static final int COMPLETEEvent id indicating that recording has completed successfully- See Also:
-
id
public final int idThe event id -
frames
public final int framesThe number of frames recorded
-
-
Constructor Details
-
RecorderEvent
Construct aRecorderEventobject.- Parameters:
source- the object where the event originatedid- The event typeframes- The number of frames recorded
-