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

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTPOS.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FrameBodyTPOS0%   (0/1)0%   (0/5)0%   (0/18)0%   (0/9)
FrameBodyTPOS (): void 0%   (0/1)0%   (0/3)0%   (0/2)
FrameBodyTPOS (FrameBodyTPOS): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTPOS (RandomAccessFile): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTPOS (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 'Part of a set' frame is a numeric string that describes which<br> &nbsp;&nbsp; part of a set the
9 * audio came from. This frame is used if the source<br> &nbsp;&nbsp; described in the &quot;TALB&quot; frame is divided
10 * into several mediums, e.g. a<br>
11 * <p/>
12 * &nbsp;&nbsp; double CD. The value MAY be extended with a &quot;/&quot; character and a<br> &nbsp;&nbsp; numeric
13 * string containing the total number of parts in the set. E.g.<br> &nbsp;&nbsp; &quot;1/2&quot;.</p>
14 *
15 * @author Eric Farng
16 * @version $Revision: 1.4 $
17 */
18public class FrameBodyTPOS extends AbstractFrameBodyTextInformation {
19 
20    /**
21     * Creates a new FrameBodyTPOS object.
22     */
23    public FrameBodyTPOS() {
24        super();
25    }
26 
27    /**
28     * Creates a new FrameBodyTPOS object.
29     */
30    public FrameBodyTPOS(final FrameBodyTPOS body) {
31        super(body);
32    }
33 
34    /**
35     * Creates a new FrameBodyTPOS object.
36     */
37    public FrameBodyTPOS(final byte textEncoding, final String text) {
38        super(textEncoding, text);
39    }
40 
41    /**
42     * Creates a new FrameBodyTPOS object.
43     */
44    public FrameBodyTPOS(final RandomAccessFile file) throws java.io.IOException, InvalidTagException {
45        super(file);
46    }
47 
48    public String getIdentifier() {
49        return "TPOS";
50    }
51}

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