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

FrameBodyTOFN

public class FrameBodyTOFN extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBody
Original filename Text information frame.

The 'Original filename' frame contains the preferred filename for the file, since some media doesn't allow the desired length of the filename. The filename is case sensitive and includes its suffix.

For more details, please refer to the ID3 specifications:

author
: Paul Taylor
author
: Eric Farng
version
$Id: FrameBodyTOFN.java 947 2011-01-17 13:53:20Z paultaylor $

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

    
public FrameBodyTOFN(FrameBodyTOFN body)

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

param
textEncoding
param
text

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