EMMA Coverage Report (generated Tue Mar 14 21:50:42 EST 2006)
[all classes][org.farng.mp3.id3]

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTCOP.java]

nameclass, %method, %block, %line, %
FrameBodyTCOP.java0%   (0/1)0%   (0/5)0%   (0/18)0%   (0/9)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FrameBodyTCOP0%   (0/1)0%   (0/5)0%   (0/18)0%   (0/9)
FrameBodyTCOP (): void 0%   (0/1)0%   (0/3)0%   (0/2)
FrameBodyTCOP (FrameBodyTCOP): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTCOP (RandomAccessFile): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTCOP (byte, String): void 0%   (0/1)0%   (0/5)0%   (0/2)
getIdentifier (): String 0%   (0/1)0%   (0/2)0%   (0/1)

1package org.farng.mp3.id3;
2 
3import org.farng.mp3.InvalidTagException;
4 
5import java.io.RandomAccessFile;
6 
7/**
8 * &nbsp;&nbsp; The 'Copyright message' frame, in which the string must begin with a<br> &nbsp;&nbsp; year and a space
9 * character (making five characters), is intended for<br>
10 * <p/>
11 * &nbsp;&nbsp; the copyright holder of the original sound, not the audio file<br> &nbsp;&nbsp; itself. The absence of
12 * this frame means only that the copyright<br> &nbsp;&nbsp; information is unavailable or has been removed, and must
13 * not be<br> &nbsp;&nbsp; interpreted to mean that the audio is public domain. Every time this<br> &nbsp;&nbsp; field
14 * is displayed the field must be preceded with &quot;Copyright &quot; (C) &quot;<br>
15 * <p/>
16 * &nbsp;&nbsp; &quot;, where (C) is one character showing a C in a circle.</p>
17 *
18 * @author Eric Farng
19 * @version $Revision: 1.4 $
20 */
21public 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}

[all classes][org.farng.mp3.id3]
EMMA 2.0.5312 (C) Vladimir Roubtsov