package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'ISRC' frame should contain the International Standard Recording<br>    Code [ISRC] (12 * characters).<br> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTSRC extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTSRC object. */ public FrameBodyTSRC() { super(); } /** * Creates a new FrameBodyTSRC object. */ public FrameBodyTSRC(final FrameBodyTSRC body) { super(body); } /** * Creates a new FrameBodyTSRC object. */ public FrameBodyTSRC(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTSRC object. */ public FrameBodyTSRC(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TSRC"; } }