package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Track number/Position in set' frame is a numeric string<br>    containing the order * number of the audio-file on its original<br> * <p/> *    recording. This MAY be extended with a "/" character and a numeric<br>    string * containing the total number of tracks/elements on the original<br>    recording. E.g. "4/9".</p> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTRCK extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTRCK object. */ public FrameBodyTRCK() { super(); } /** * Creates a new FrameBodyTRCK object. */ public FrameBodyTRCK(final FrameBodyTRCK body) { super(body); } /** * Creates a new FrameBodyTRCK object. */ public FrameBodyTRCK(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTRCK object. */ public FrameBodyTRCK(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TRCK"; } }