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

FrameBodyTPE4

public class FrameBodyTPE4 extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBody
Interpreted, remixed, or otherwise modified by Text information frame.

The 'Interpreted, remixed, or otherwise modified by' frame contains more information about the people behind a remix and similar interpretations of another existing piece.

For more details, please refer to the ID3 specifications:

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

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

    
public FrameBodyTPE4(FrameBodyTPE4 body)

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

param
textEncoding
param
text

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