1 | package org.farng.mp3.id3; |
2 | |
3 | import org.farng.mp3.InvalidTagException; |
4 | |
5 | import java.io.RandomAccessFile; |
6 | |
7 | /** |
8 | * The 'Content group description' frame is used if the sound belongs to<br> a larger category |
9 | * of sounds/music. For example, classical music is<br> often sorted in different musical sections (e.g. |
10 | * "Piano Concerto",<br> |
11 | * <p/> |
12 | * "Weather - Hurricane").</p> |
13 | * |
14 | * @author Eric Farng |
15 | * @version $Revision: 1.4 $ |
16 | */ |
17 | public class FrameBodyTIT1 extends AbstractFrameBodyTextInformation { |
18 | |
19 | /** |
20 | * Creates a new FrameBodyTIT1 object. |
21 | */ |
22 | public FrameBodyTIT1() { |
23 | super(); |
24 | } |
25 | |
26 | /** |
27 | * Creates a new FrameBodyTIT1 object. |
28 | */ |
29 | public FrameBodyTIT1(final FrameBodyTIT1 body) { |
30 | super(body); |
31 | } |
32 | |
33 | /** |
34 | * Creates a new FrameBodyTIT1 object. |
35 | */ |
36 | public FrameBodyTIT1(final byte textEncoding, final String text) { |
37 | super(textEncoding, text); |
38 | } |
39 | |
40 | /** |
41 | * Creates a new FrameBodyTIT1 object. |
42 | */ |
43 | public FrameBodyTIT1(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { |
44 | super(file); |
45 | } |
46 | |
47 | public String getIdentifier() { |
48 | return "TIT1"; |
49 | } |
50 | } |