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

FrameBodyTOAL

public class FrameBodyTOAL extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBody
Original album/movie/show title Text information frame.

The 'Original album/movie/show title' frame is intended for the title of the original recording (or source of sound), if for example the music in the file should be a cover of a previously released song.

For more details, please refer to the ID3 specifications:

author
: Paul Taylor
author
: Eric Farng
version
$Id: FrameBodyTOAL.java 921 2010-10-14 11:04:46Z paultaylor $

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

    
public FrameBodyTOAL(FrameBodyTOAL body)

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

param
textEncoding
param
text

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

param
byteBuffer
param
frameSize
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_ORIG_TITLE;