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

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTPRO.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FrameBodyTPRO0%   (0/1)0%   (0/5)0%   (0/18)0%   (0/9)
FrameBodyTPRO (): void 0%   (0/1)0%   (0/3)0%   (0/2)
FrameBodyTPRO (FrameBodyTPRO): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTPRO (RandomAccessFile): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTPRO (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 'Produced notice' 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 production copyright holder of the original sound, not the audio<br> &nbsp;&nbsp; file itself. The
12 * absence of this frame means only that the production<br> &nbsp;&nbsp; copyright information is unavailable or has
13 * been removed, and must<br> &nbsp;&nbsp; not be interpreted to mean that the audio is public domain. Every<br>
14 * &nbsp;&nbsp; time this field is displayed the field must be preceded with<br>
15 * <p/>
16 * &nbsp;&nbsp; &quot;Produced &quot; (P) &quot; &quot;, where (P) is one character showing a P in a<br> &nbsp;&nbsp;
17 * circle.</p>
18 *
19 * @author Eric Farng
20 * @version $Revision: 1.4 $
21 */
22public 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}

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