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

FrameBodyTIT1

public class FrameBodyTIT1 extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBody
Content group description Text information frame.

The 'Content group description' frame is used if the sound belongs to a larger category of sounds/music. For example, classical music is often sorted in different musical sections (e.g. "Piano Concerto", "Weather - Hurricane").

For more details, please refer to the ID3 specifications:

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

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

    
public FrameBodyTIT1(FrameBodyTIT1 body)

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

param
textEncoding
param
text

        super(textEncoding, text);
    
public FrameBodyTIT1(ByteBuffer byteBuffer, int frameSize)
Creates a new FrameBodyTIT1 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_CONTENT_GROUP_DESC;