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

FrameBodyTALB

public class FrameBodyTALB extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBody
Album/Movie/Show title Text information frame.

The 'Album/Movie/Show title' frame is intended for the title of the recording(/source of sound) which the audio in the file is taken from.

For more details, please refer to the ID3 specifications:

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

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

    
public FrameBodyTALB(FrameBodyTALB body)

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

param
textEncoding
param
text

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

param
byteBuffer
param
frameSize
throws
InvalidTagException if unable to create framebody from buffer

        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_ALBUM;