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

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTPUB.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FrameBodyTPUB0%   (0/1)0%   (0/5)0%   (0/18)0%   (0/9)
FrameBodyTPUB (): void 0%   (0/1)0%   (0/3)0%   (0/2)
FrameBodyTPUB (FrameBodyTPUB): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTPUB (RandomAccessFile): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTPUB (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 'Publisher' frame simply contains the name of the label or<br> &nbsp;&nbsp; publisher.</p>
9 *
10 * @author Eric Farng
11 * @version $Revision: 1.4 $
12 */
13public class FrameBodyTPUB extends AbstractFrameBodyTextInformation {
14 
15    /**
16     * Creates a new FrameBodyTPUB object.
17     */
18    public FrameBodyTPUB() {
19        super();
20    }
21 
22    /**
23     * Creates a new FrameBodyTPUB object.
24     */
25    public FrameBodyTPUB(final FrameBodyTPUB body) {
26        super(body);
27    }
28 
29    /**
30     * Creates a new FrameBodyTPUB object.
31     */
32    public FrameBodyTPUB(final byte textEncoding, final String text) {
33        super(textEncoding, text);
34    }
35 
36    /**
37     * Creates a new FrameBodyTPUB object.
38     */
39    public FrameBodyTPUB(final RandomAccessFile file) throws java.io.IOException, InvalidTagException {
40        super(file);
41    }
42 
43    public String getIdentifier() {
44        return "TPUB";
45    }
46}

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