FileDocCategorySizeDatePackage
FrameBodyTEXT.javaAPI DocJaudiotagger 2.0.42663Wed Mar 30 16:12:04 BST 2011org.jaudiotagger.tag.id3.framebody

FrameBodyTEXT

public class FrameBodyTEXT extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBody
Lyricist/Text writer Text information frame.

The 'Lyricist(s)/Text writer(s)' frame is intended for the writer(s) of the text or lyrics in the recording. They are seperated with the "/" character.

For more details, please refer to the ID3 specifications:

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

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

    
public FrameBodyTEXT(FrameBodyTEXT body)

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

param
textEncoding
param
text

        super(textEncoding, text);
    
public FrameBodyTEXT(ByteBuffer byteBuffer, int frameSize)
Creates a new FrameBodyTEXT 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 ID3v24Frames.FRAME_ID_LYRICIST;