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

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTMCL.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FrameBodyTMCL0%   (0/1)0%   (0/5)0%   (0/18)0%   (0/9)
FrameBodyTMCL (): void 0%   (0/1)0%   (0/3)0%   (0/2)
FrameBodyTMCL (FrameBodyTMCL): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTMCL (RandomAccessFile): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTMCL (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 'Musician credits list' is intended as a mapping between<br> &nbsp;&nbsp; instruments and the
9 * musician that played it. Every odd field is an<br> &nbsp;&nbsp; instrument and every even is an artist or a comma
10 * delimited list of<br>
11 * <p/>
12 * &nbsp;&nbsp; artists.</p>
13 *
14 * @author Eric Farng
15 * @version $Revision: 1.4 $
16 */
17public class FrameBodyTMCL extends AbstractFrameBodyTextInformation {
18 
19    /**
20     * Creates a new FrameBodyTMCL object.
21     */
22    public FrameBodyTMCL() {
23        super();
24    }
25 
26    /**
27     * Creates a new FrameBodyTMCL object.
28     */
29    public FrameBodyTMCL(final FrameBodyTMCL body) {
30        super(body);
31    }
32 
33    /**
34     * Creates a new FrameBodyTMCL object.
35     */
36    public FrameBodyTMCL(final byte textEncoding, final String text) {
37        super(textEncoding, text);
38    }
39 
40    /**
41     * Creates a new FrameBodyTMCL object.
42     */
43    public FrameBodyTMCL(final RandomAccessFile file) throws java.io.IOException, InvalidTagException {
44        super(file);
45    }
46 
47    public String getIdentifier() {
48        return "TMCL";
49    }
50}

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