package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Title sort order' frame defines a string which should be used<br>    instead of the title * (TIT2) for sorting purposes.<br> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTSOT extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTSOT object. */ public FrameBodyTSOT() { super(); } /** * Creates a new FrameBodyTSOT object. */ public FrameBodyTSOT(final FrameBodyTSOT body) { super(body); } /** * Creates a new FrameBodyTSOT object. */ public FrameBodyTSOT(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTSOT object. */ public FrameBodyTSOT(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TSOT"; } }