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

FrameBodyTCOP

public class FrameBodyTCOP extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBody
Copyright message Text information frame.

The 'Copyright message' frame, which must begin with a year and a space character (making five characters), is intended for the copyright holder of the original sound, not the audio file itself. The absence of this frame means only that the copyright information is unavailable or has been removed, and must not be interpreted to mean that the sound is public domain. Every time this field is displayed the field must be preceded with "Copyright ©".

For more details, please refer to the ID3 specifications:

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

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

    
public FrameBodyTCOP(FrameBodyTCOP body)

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

param
textEncoding
param
text

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