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

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTRCK.java]

nameclass, %method, %block, %line, %
FrameBodyTRCK.java100% (1/1)100% (5/5)100% (18/18)100% (9/9)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FrameBodyTRCK100% (1/1)100% (5/5)100% (18/18)100% (9/9)
FrameBodyTRCK (): void 100% (1/1)100% (3/3)100% (2/2)
FrameBodyTRCK (FrameBodyTRCK): void 100% (1/1)100% (4/4)100% (2/2)
FrameBodyTRCK (RandomAccessFile): void 100% (1/1)100% (4/4)100% (2/2)
FrameBodyTRCK (byte, String): void 100% (1/1)100% (5/5)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 'Track number/Position in set' frame is a numeric string<br> &nbsp;&nbsp; containing the order
9 * number of the audio-file on its original<br>
10 * <p/>
11 * &nbsp;&nbsp; recording. This MAY be extended with a &quot;/&quot; character and a numeric<br> &nbsp;&nbsp; string
12 * containing the total number of tracks/elements on the original<br> &nbsp;&nbsp; recording. E.g. &quot;4/9&quot;.</p>
13 *
14 * @author Eric Farng
15 * @version $Revision: 1.4 $
16 */
17public class FrameBodyTRCK extends AbstractFrameBodyTextInformation {
18 
19    /**
20     * Creates a new FrameBodyTRCK object.
21     */
22    public FrameBodyTRCK() {
23        super();
24    }
25 
26    /**
27     * Creates a new FrameBodyTRCK object.
28     */
29    public FrameBodyTRCK(final FrameBodyTRCK body) {
30        super(body);
31    }
32 
33    /**
34     * Creates a new FrameBodyTRCK object.
35     */
36    public FrameBodyTRCK(final byte textEncoding, final String text) {
37        super(textEncoding, text);
38    }
39 
40    /**
41     * Creates a new FrameBodyTRCK object.
42     */
43    public FrameBodyTRCK(final RandomAccessFile file) throws java.io.IOException, InvalidTagException {
44        super(file);
45    }
46 
47    public String getIdentifier() {
48        return "TRCK";
49    }
50}

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