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

FrameBodyWOAS

public class FrameBodyWOAS extends AbstractFrameBodyUrlLink implements ID3v24FrameBody, ID3v23FrameBody
Official audio source webpage URL link frames.

The 'Official audio source webpage' frame is a URL pointing at the official webpage for the source of the audio file, e.g. a movie.

For more details, please refer to the ID3 specifications:

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

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

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

param
urlLink

        super(urlLink);
    
public FrameBodyWOAS(FrameBodyWOAS body)

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