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

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTPE4.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FrameBodyTPE40%   (0/1)0%   (0/5)0%   (0/18)0%   (0/9)
FrameBodyTPE4 (): void 0%   (0/1)0%   (0/3)0%   (0/2)
FrameBodyTPE4 (FrameBodyTPE4): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTPE4 (RandomAccessFile): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTPE4 (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 'Interpreted, remixed, or otherwise modified by' frame contains<br> &nbsp;&nbsp; more information
9 * about the people behind a remix and similar<br> &nbsp;&nbsp; interpretations of another existing piece.</p>
10 *
11 * @author Eric Farng
12 * @version $Revision: 1.4 $
13 */
14public class FrameBodyTPE4 extends AbstractFrameBodyTextInformation {
15 
16    /**
17     * Creates a new FrameBodyTPE4 object.
18     */
19    public FrameBodyTPE4() {
20        super();
21    }
22 
23    /**
24     * Creates a new FrameBodyTPE4 object.
25     */
26    public FrameBodyTPE4(final FrameBodyTPE4 body) {
27        super(body);
28    }
29 
30    /**
31     * Creates a new FrameBodyTPE4 object.
32     */
33    public FrameBodyTPE4(final byte textEncoding, final String text) {
34        super(textEncoding, text);
35    }
36 
37    /**
38     * Creates a new FrameBodyTPE4 object.
39     */
40    public FrameBodyTPE4(final RandomAccessFile file) throws java.io.IOException, InvalidTagException {
41        super(file);
42    }
43 
44    public String getIdentifier() {
45        return "TPE4";
46    }
47}

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