package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Album sort order' frame defines a string which should be used<br>    instead of the album * name (TALB) for sorting purposes. E.g. an album<br>    named "A Soundtrack" might preferably be * sorted as "Soundtrack".</p> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTSOA extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTSOA object. */ public FrameBodyTSOA() { super(); } /** * Creates a new FrameBodyTSOA object. */ public FrameBodyTSOA(final FrameBodyTSOA body) { super(body); } /** * Creates a new FrameBodyTSOA object. */ public FrameBodyTSOA(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTSOA object. */ public FrameBodyTSOA(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TSOA"; } }