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