package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Subtitle/Description refinement' frame is used for information<br>    directly related to * the contents title (e.g. "Op. 16" or "Performed<br> * <p/> *    live at Wembley").</p> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTIT3 extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTIT3 object. */ public FrameBodyTIT3() { super(); } /** * Creates a new FrameBodyTIT3 object. */ public FrameBodyTIT3(final FrameBodyTIT3 body) { super(body); } /** * Creates a new FrameBodyTIT3 object. */ public FrameBodyTIT3(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTIT3 object. */ public FrameBodyTIT3(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TIT3"; } }