package org.farng.mp3.id3; import org.farng.mp3.InvalidTagException; /** *    The 'Content type', which ID3v1 was stored as a one byte numeric<br> * <p/> *    value only, is now a string. You may use one or several of the ID3v1<br>    types as numerical * strings, or, since the category list would be<br>    impossible to maintain with accurate and up to date * categories,<br>    define your own. Example: "21" $00 "Eurodisco" * <p/> * $00</p> * <p/> * <p>   You may also use any of the following keywords:<br>    </p> * <p/> * <p>     RX  Remix<br>      CR  Cover</p> * * @author Eric Farng * @version $Revision: 1637 $ */ public class FrameBodyTCON extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTCON object. */ public FrameBodyTCON() { super(); } /** * Creates a new FrameBodyTCON object. */ public FrameBodyTCON(final FrameBodyTCON body) { super(body); } /** * Creates a new FrameBodyTCON object. */ public FrameBodyTCON(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTCON object. */ public FrameBodyTCON(final java.io.RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TCON"; } }