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