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

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTLEN.java]

nameclass, %method, %block, %line, %
FrameBodyTLEN.java100% (1/1)60%  (3/5)56%  (10/18)56%  (5/9)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FrameBodyTLEN100% (1/1)60%  (3/5)56%  (10/18)56%  (5/9)
FrameBodyTLEN (): void 0%   (0/1)0%   (0/3)0%   (0/2)
FrameBodyTLEN (byte, String): void 0%   (0/1)0%   (0/5)0%   (0/2)
FrameBodyTLEN (FrameBodyTLEN): void 100% (1/1)100% (4/4)100% (2/2)
FrameBodyTLEN (RandomAccessFile): void 100% (1/1)100% (4/4)100% (2/2)
getIdentifier (): String 100% (1/1)100% (2/2)100% (1/1)

1package org.farng.mp3.id3;
2 
3import org.farng.mp3.InvalidTagException;
4 
5import java.io.RandomAccessFile;
6 
7/**
8 * &nbsp;&nbsp; The 'Length' frame contains the length of the audio file in<br>
9 * <p/>
10 * &nbsp;&nbsp; milliseconds, represented as a numeric string.</p>
11 *
12 * @author Eric Farng
13 * @version $Revision: 1.4 $
14 */
15public class FrameBodyTLEN extends AbstractFrameBodyTextInformation {
16 
17    /**
18     * Creates a new FrameBodyTLEN object.
19     */
20    public FrameBodyTLEN() {
21        super();
22    }
23 
24    /**
25     * Creates a new FrameBodyTLEN object.
26     */
27    public FrameBodyTLEN(final FrameBodyTLEN body) {
28        super(body);
29    }
30 
31    /**
32     * Creates a new FrameBodyTLEN object.
33     */
34    public FrameBodyTLEN(final byte textEncoding, final String text) {
35        super(textEncoding, text);
36    }
37 
38    /**
39     * Creates a new FrameBodyTLEN object.
40     */
41    public FrameBodyTLEN(final RandomAccessFile file) throws java.io.IOException, InvalidTagException {
42        super(file);
43    }
44 
45    public String getIdentifier() {
46        return "TLEN";
47    }
48}

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