All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class quicktime.std.qtcomponents.TimeCodeInfo

java.lang.Object
   |
   +----quicktime.std.qtcomponents.TimeCodeInfo

public final class TimeCodeInfo
extends Object
The TimeCodeInfo class represents time code as frame count or as HH:MM:SS:FF. If frame count is used in construction, then TimeCodeTime time will be null. If TimeCodeTime time is used in construction, then frame count will be 0. It is an information class.


Variable Index

 o counter
Represents the total number of frames of the timecode.
 o definition
Used to indicate the timecode formatting information.
 o frameNumber
Used to indicate the current frame number by the specified time and definition.
 o time
Represents time of the timecode as HH:MM:SS:FF.
 o userData
Represents the timecode data.

Constructor Index

 o TimeCodeInfo()
Used when returning information from TimeCoder calls.
 o TimeCodeInfo(int, TimeCodeDef, int, QTHandleRef)
Creates a TimeCodeInfo object using frame count.
 o TimeCodeInfo(int, TimeCodeDef, TimeCodeTime, QTHandleRef)
Creates a TimeCodeDef object which has no initial settings.

Method Index

 o toString()
String representation of this class.

Variables

 o frameNumber
 public int frameNumber
Used to indicate the current frame number by the specified time and definition.

 o definition
 public TimeCodeDef definition
Used to indicate the timecode formatting information.

 o time
 public TimeCodeTime time
Represents time of the timecode as HH:MM:SS:FF.

 o counter
 public int counter
Represents the total number of frames of the timecode.

 o userData
 public QTHandleRef userData
Represents the timecode data.

Constructors

 o TimeCodeInfo
 public TimeCodeInfo()
Used when returning information from TimeCoder calls.

 o TimeCodeInfo
 public TimeCodeInfo(int frameNumber,
                     TimeCodeDef definition,
                     TimeCodeTime time,
                     QTHandleRef userData)
Creates a TimeCodeDef object which has no initial settings. The counter instance variable is 0.

Parameters:
frameNumber - Current frame number.
definition - Object with flags and other time code defining variables.
time - TimeCode object using hours,minutes,seconds.
userData - Handle to the data.
 o TimeCodeInfo
 public TimeCodeInfo(int frameNumber,
                     TimeCodeDef definition,
                     int counter,
                     QTHandleRef userData)
Creates a TimeCodeInfo object using frame count. The time nstance variable is null.

Parameters:
frameNumber - Current frame number.
definition - Object with flags and other time code defining variables.
counter - Number of frames
userData - Handle to the data.

Methods

 o toString
 public String toString()
String representation of this class.

Overrides:
toString in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index