package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Original lyricist/text writer' frame is intended for the<br> * <p/> *    text writer of the original recording, if for example the music in<br>    the file should be a * cover of a previously released song.</p> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTOLY extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTOLY object. */ public FrameBodyTOLY() { super(); } /** * Creates a new FrameBodyTOLY object. */ public FrameBodyTOLY(final FrameBodyTOLY body) { super(body); } /** * Creates a new FrameBodyTOLY object. */ public FrameBodyTOLY(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTOLY object. */ public FrameBodyTOLY(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TOLY"; } }