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