package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Content group description' frame is used if the sound belongs to<br>    a larger category * of sounds/music. For example, classical music is<br>    often sorted in different musical sections (e.g. * "Piano Concerto",<br> * <p/> *    "Weather - Hurricane").</p> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTIT1 extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTIT1 object. */ public FrameBodyTIT1() { super(); } /** * Creates a new FrameBodyTIT1 object. */ public FrameBodyTIT1(final FrameBodyTIT1 body) { super(body); } /** * Creates a new FrameBodyTIT1 object. */ public FrameBodyTIT1(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTIT1 object. */ public FrameBodyTIT1(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TIT1"; } }