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

FrameBodyTRDA

public class FrameBodyTRDA extends AbstractFrameBodyTextInfo implements ID3v23FrameBody
Recording dates Text information frame.

The 'Recording dates' frame is a intended to be used as complement to the "TYER", "TDAT" and "TIME" frames. E.g. "4th-7th June, 12th June" in combination with the "TYER" frame.

For more details, please refer to the ID3 specifications:

author
: Paul Taylor
author
: Eric Farng
version
$Id: FrameBodyTRDA.java 832 2009-11-12 13:25:38Z paultaylor $

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

    
public FrameBodyTRDA(FrameBodyTRDA body)

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

param
textEncoding
param
text

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

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

        super(byteBuffer, frameSize);
    
Methods Summary
public java.lang.StringgetIdentifier()
The ID3v2 frame identifier

return
the ID3v2 frame identifier for this frame type

        return ID3v23Frames.FRAME_ID_V3_TRDA;