FileDocCategorySizeDatePackage
FrameBodyTDTG.javaAPI DocJaudiotagger 2.0.42425Wed Mar 30 16:12:02 BST 2011org.jaudiotagger.tag.id3.framebody

FrameBodyTDTG

public class FrameBodyTDTG extends AbstractFrameBodyTextInfo implements ID3v24FrameBody

The 'Tagging time' frame contains a timestamp describing then the audio was tagged. Timestamp format is described in the ID3v2 structure document

Fields Summary
Constructors Summary
public FrameBodyTDTG()
Creates a new FrameBodyTDTG datatype.

    
public FrameBodyTDTG(FrameBodyTDTG body)

        super(body);
    
public FrameBodyTDTG(byte textEncoding, String text)
Creates a new FrameBodyTDTG datatype.

param
textEncoding
param
text

        super(textEncoding, text);
    
public FrameBodyTDTG(ByteBuffer byteBuffer, int frameSize)
Creates a new FrameBodyTDTG datatype.

param
byteBuffer
param
frameSize
throws
java.io.IOException
throws
InvalidTagException

        super(byteBuffer, frameSize);
    
Methods Summary
public java.lang.StringgetIdentifier()

return
the frame identifier

        return ID3v24Frames.FRAME_ID_TAGGING_TIME;