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

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTOWN.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

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

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