package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** * <div class=h5>TORY</div> * <p/> * <div class=t>The 'Original release year' frame is intended for the year when the original recording, if for example * the music in the file should be a cover of a previously released song, was released. The field is formatted as in the * "TYER" frame.</div> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTORY extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTORY object. */ public FrameBodyTORY() { super(); } /** * Creates a new FrameBodyTORY object. */ public FrameBodyTORY(final FrameBodyTORY body) { super(body); } /** * Creates a new FrameBodyTORY object. */ public FrameBodyTORY(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTORY object. */ public FrameBodyTORY(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TORY"; } }