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

FrameBodyWORS

public class FrameBodyWORS extends AbstractFrameBodyUrlLink implements ID3v24FrameBody, ID3v23FrameBody
Official internet radio station homepage URL link frames.

The 'Official internet radio station homepage' contains a URL pointing at the homepage of the internet radio station.

For more details, please refer to the ID3 specifications:

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

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

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

param
urlLink

        super(urlLink);
    
public FrameBodyWORS(FrameBodyWORS body)

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