| 1 | package org.farng.mp3.id3; |
| 2 | |
| 3 | import org.farng.mp3.InvalidTagException; |
| 4 | |
| 5 | import java.io.RandomAccessFile; |
| 6 | |
| 7 | /** |
| 8 | * The 'Produced notice' frame, in which the string must begin with a<br> year and a space |
| 9 | * character (making five characters), is intended for<br> |
| 10 | * <p/> |
| 11 | * the production copyright holder of the original sound, not the audio<br> file itself. The |
| 12 | * absence of this frame means only that the production<br> copyright information is unavailable or has |
| 13 | * been removed, and must<br> not be interpreted to mean that the audio is public domain. Every<br> |
| 14 | * time this field is displayed the field must be preceded with<br> |
| 15 | * <p/> |
| 16 | * "Produced " (P) " ", where (P) is one character showing a P in a<br> |
| 17 | * circle.</p> |
| 18 | * |
| 19 | * @author Eric Farng |
| 20 | * @version $Revision: 1.4 $ |
| 21 | */ |
| 22 | public class FrameBodyTPRO extends AbstractFrameBodyTextInformation { |
| 23 | |
| 24 | /** |
| 25 | * Creates a new FrameBodyTPRO object. |
| 26 | */ |
| 27 | public FrameBodyTPRO() { |
| 28 | super(); |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Creates a new FrameBodyTPRO object. |
| 33 | */ |
| 34 | public FrameBodyTPRO(final FrameBodyTPRO body) { |
| 35 | super(body); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Creates a new FrameBodyTPRO object. |
| 40 | */ |
| 41 | public FrameBodyTPRO(final byte textEncoding, final String text) { |
| 42 | super(textEncoding, text); |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Creates a new FrameBodyTPRO object. |
| 47 | */ |
| 48 | public FrameBodyTPRO(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { |
| 49 | super(file); |
| 50 | } |
| 51 | |
| 52 | public String getIdentifier() { |
| 53 | return "TPRO"; |
| 54 | } |
| 55 | } |