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

FrameBodyWOAR

public class FrameBodyWOAR extends AbstractFrameBodyUrlLink implements ID3v24FrameBody, ID3v23FrameBody
Official artist/performer webpage URL link frames.

The 'Official artist/performer webpage' frame is a URL pointing at the artists official webpage. There may be more than one "WOAR" frame in a tag if the audio contains more than one performer, but not with the same content.

For more details, please refer to the ID3 specifications:

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

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

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

param
urlLink

        super(urlLink);
    
public FrameBodyWOAR(FrameBodyWOAR body)

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