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

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTOPE.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FrameBodyTOPE0%   (0/1)0%   (0/5)0%   (0/18)0%   (0/9)
FrameBodyTOPE (): void 0%   (0/1)0%   (0/3)0%   (0/2)
FrameBodyTOPE (FrameBodyTOPE): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTOPE (RandomAccessFile): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTOPE (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 'Original artist/performer' frame is intended for the performer<br> &nbsp;&nbsp; of the original
9 * recording, if for example the music in the file<br> &nbsp;&nbsp; should be a cover of a previously released
10 * song.</p>
11 *
12 * @author Eric Farng
13 * @version $Revision: 1.4 $
14 */
15public class FrameBodyTOPE extends AbstractFrameBodyTextInformation {
16 
17    /**
18     * Creates a new FrameBodyTOPE object.
19     */
20    public FrameBodyTOPE() {
21        super();
22    }
23 
24    /**
25     * Creates a new FrameBodyTOPE object.
26     */
27    public FrameBodyTOPE(final FrameBodyTOPE body) {
28        super(body);
29    }
30 
31    /**
32     * Creates a new FrameBodyTOPE object.
33     */
34    public FrameBodyTOPE(final byte textEncoding, final String text) {
35        super(textEncoding, text);
36    }
37 
38    /**
39     * Creates a new FrameBodyTOPE object.
40     */
41    public FrameBodyTOPE(final RandomAccessFile file) throws java.io.IOException, InvalidTagException {
42        super(file);
43    }
44 
45    public String getIdentifier() {
46        return "TOPE";
47    }
48}

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