package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Original filename' frame contains the preferred filename for the<br>    file, since some * media doesn't allow the desired length of the<br> * <p/> *    filename. The filename is case sensitive and includes its suffix.</p> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTOFN extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTOFN object. */ public FrameBodyTOFN() { super(); } /** * Creates a new FrameBodyTOFN object. */ public FrameBodyTOFN(final FrameBodyTOFN body) { super(body); } /** * Creates a new FrameBodyTOFN object. */ public FrameBodyTOFN(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTOFN object. */ public FrameBodyTOFN(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TOFN"; } }