FrameBodyTEXTpublic class FrameBodyTEXT extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBodyLyricist/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:
|
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.
super(textEncoding, text);
| public FrameBodyTEXT(ByteBuffer byteBuffer, int frameSize)Creates a new FrameBodyTEXT datatype.
super(byteBuffer, frameSize);
|
Methods Summary |
---|
public java.lang.String | getIdentifier()The ID3v2 frame identifier
return ID3v24Frames.FRAME_ID_LYRICIST;
|
|