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