DixShtix

com.dixshtix.midi
Class HrMnSeFrFf

java.lang.Object
  |
  +--com.dixshtix.midi.BinaryData
        |
        +--com.dixshtix.midi.HrMnSeFrFf

public class HrMnSeFrFf
extends BinaryData

Smpte Time Format.

Version:
0.1
Author:
Richard C. Penner II

Fields inherited from class com.dixshtix.midi.BinaryData
data, maxPrintLength
 
Constructor Summary
HrMnSeFrFf(byte Hr, byte Mn, byte Se, byte Fr, byte Ff)
          Constructor.
 
Method Summary
 java.lang.String toString()
          Print data in readable format.
 
Methods inherited from class com.dixshtix.midi.BinaryData
getData, getData, getLength, getMaxPrintLength, hashCode, setMaxPrintLength, simpleClass
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, notify, notifyAll, registerNatives, wait, wait, wait
 

Constructor Detail

HrMnSeFrFf

public HrMnSeFrFf(byte Hr,
                  byte Mn,
                  byte Se,
                  byte Fr,
                  byte Ff)
Constructor.
Parameters:
Hr - The Hour. This may have high bits subject to interpretation.
Mn - The Minute.
Se - The Second.
Fr - The Frame Number. 0-29. Frame rates are 24,25,29.97, and 30.
Ff - The fractional frame, in 100ths.
Method Detail

toString

public java.lang.String toString()
Print data in readable format.
Overrides:
toString in class BinaryData
Following copied from class: com.dixshtix.midi.BinaryData
See Also:
BinaryData.maxPrintLength

DixShtix