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 int
Event id indicating that recording has been initiatedstatic final int
Event id indicating that recording has completed successfullyfinal int
The number of frames recordedfinal int
The event idFields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorsConstructorDescriptionRecorderEvent
(Object source, int id, int frames) Construct aRecorderEvent
object. -
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 aRecorderEvent
object.- Parameters:
source
- the object where the event originatedid
- The event typeframes
- The number of frames recorded
-