FileDocCategorySizeDatePackage
FrameBodyTLEN.javaAPI DocJaudiotagger 2.0.42563Wed Mar 30 16:12:04 BST 2011org.jaudiotagger.tag.id3.framebody

FrameBodyTLEN

public class FrameBodyTLEN extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBody
Length Text information frame.

The 'Length' frame contains the length of the audiofile in milliseconds, represented as a numeric string.

For more details, please refer to the ID3 specifications:

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

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

    
public FrameBodyTLEN(FrameBodyTLEN body)

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

param
textEncoding
param
text

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