| 1 | package org.farng.mp3.id3; |
| 2 | |
| 3 | import org.farng.mp3.InvalidTagException; |
| 4 | |
| 5 | import java.io.RandomAccessFile; |
| 6 | |
| 7 | /** |
| 8 | * The 'Album sort order' frame defines a string which should be used<br> instead of the album |
| 9 | * name (TALB) for sorting purposes. E.g. an album<br> named "A Soundtrack" might preferably be |
| 10 | * sorted as "Soundtrack".</p> |
| 11 | * |
| 12 | * @author Eric Farng |
| 13 | * @version $Revision: 1.4 $ |
| 14 | */ |
| 15 | public class FrameBodyTSOA extends AbstractFrameBodyTextInformation { |
| 16 | |
| 17 | /** |
| 18 | * Creates a new FrameBodyTSOA object. |
| 19 | */ |
| 20 | public FrameBodyTSOA() { |
| 21 | super(); |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Creates a new FrameBodyTSOA object. |
| 26 | */ |
| 27 | public FrameBodyTSOA(final FrameBodyTSOA body) { |
| 28 | super(body); |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Creates a new FrameBodyTSOA object. |
| 33 | */ |
| 34 | public FrameBodyTSOA(final byte textEncoding, final String text) { |
| 35 | super(textEncoding, text); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Creates a new FrameBodyTSOA object. |
| 40 | */ |
| 41 | public FrameBodyTSOA(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { |
| 42 | super(file); |
| 43 | } |
| 44 | |
| 45 | public String getIdentifier() { |
| 46 | return "TSOA"; |
| 47 | } |
| 48 | } |