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

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTPE3.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

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

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