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

FrameBodyWCOP

public class FrameBodyWCOP extends AbstractFrameBodyUrlLink implements ID3v24FrameBody, ID3v23FrameBody
Copyright/Legal information URL link frames.

The 'Copyright/Legal information' frame is a URL pointing at a webpage where the terms of use and ownership of the file is described.

For more details, please refer to the ID3 specifications:

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

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

    
public FrameBodyWCOP(String urlLink)
Creates a new FrameBodyWCOP datatype.

param
urlLink

        super(urlLink);
    
public FrameBodyWCOP(FrameBodyWCOP body)

        super(body);
    
public FrameBodyWCOP(ByteBuffer byteBuffer, int frameSize)
Creates a new FrameBodyWCOP 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_URL_COPYRIGHT;