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

FrameBodyTOPE

public class FrameBodyTOPE extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBody
Original artist(s)/performer(s) Text information frame.

The 'Original artist(s)/performer(s)' frame is intended for the performer(s) of the original recording, if for example the music in the file should be a cover of a previously released song. The performers are separated with the "/" character.

For more details, please refer to the ID3 specifications:

author
: Paul Taylor
author
: Eric Farng
version
$Id: FrameBodyTOPE.java 922 2010-10-14 13:31:09Z paultaylor $

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

    
public FrameBodyTOPE(FrameBodyTOPE body)

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

param
textEncoding
param
text

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