| 1 | package org.farng.mp3.id3; |
| 2 | |
| 3 | import org.farng.mp3.InvalidTagException; |
| 4 | |
| 5 | import java.io.RandomAccessFile; |
| 6 | |
| 7 | /** |
| 8 | * The 'Original lyricist/text writer' frame is intended for the<br> |
| 9 | * <p/> |
| 10 | * text writer of the original recording, if for example the music in<br> the file should be a |
| 11 | * cover of a previously released song.</p> |
| 12 | * |
| 13 | * @author Eric Farng |
| 14 | * @version $Revision: 1.4 $ |
| 15 | */ |
| 16 | public class FrameBodyTOLY extends AbstractFrameBodyTextInformation { |
| 17 | |
| 18 | /** |
| 19 | * Creates a new FrameBodyTOLY object. |
| 20 | */ |
| 21 | public FrameBodyTOLY() { |
| 22 | super(); |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Creates a new FrameBodyTOLY object. |
| 27 | */ |
| 28 | public FrameBodyTOLY(final FrameBodyTOLY body) { |
| 29 | super(body); |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Creates a new FrameBodyTOLY object. |
| 34 | */ |
| 35 | public FrameBodyTOLY(final byte textEncoding, final String text) { |
| 36 | super(textEncoding, text); |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Creates a new FrameBodyTOLY object. |
| 41 | */ |
| 42 | public FrameBodyTOLY(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { |
| 43 | super(file); |
| 44 | } |
| 45 | |
| 46 | public String getIdentifier() { |
| 47 | return "TOLY"; |
| 48 | } |
| 49 | } |