package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Copyright message' frame, in which the string must begin with a<br>    year and a space * character (making five characters), is intended for<br> * <p/> *    the copyright holder of the original sound, not the audio file<br>    itself. The absence of * this frame means only that the copyright<br>    information is unavailable or has been removed, and must * not be<br>    interpreted to mean that the audio is public domain. Every time this<br>    field * is displayed the field must be preceded with "Copyright " (C) "<br> * <p/> *    ", where (C) is one character showing a C in a circle.</p> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTCOP extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTCOP object. */ public FrameBodyTCOP() { super(); } /** * Creates a new FrameBodyTCOP object. */ public FrameBodyTCOP(final FrameBodyTCOP body) { super(body); } /** * Creates a new FrameBodyTCOP object. */ public FrameBodyTCOP(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTCOP object. */ public FrameBodyTCOP(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TCOP"; } }