package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Title/Songname/Content description' frame is the actual name of<br>    the piece (e.g. * "Adagio", "Hurricane Donna").</p> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTIT2 extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTIT2 object. */ public FrameBodyTIT2() { super(); } /** * Creates a new FrameBodyTIT2 object. */ public FrameBodyTIT2(final FrameBodyTIT2 body) { super(body); } /** * Creates a new FrameBodyTIT2 object. */ public FrameBodyTIT2(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTIT2 object. */ public FrameBodyTIT2(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TIT2"; } }