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

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTKEY.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FrameBodyTKEY0%   (0/1)0%   (0/5)0%   (0/18)0%   (0/9)
FrameBodyTKEY (): void 0%   (0/1)0%   (0/3)0%   (0/2)
FrameBodyTKEY (FrameBodyTKEY): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTKEY (RandomAccessFile): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTKEY (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 'Initial key' frame contains the musical key in which the sound<br> &nbsp;&nbsp; starts. It is
9 * represented as a string with a maximum length of three<br>
10 * <p/>
11 * &nbsp;&nbsp; characters. The ground keys are represented with &quot;A&quot;,&quot;B&quot;,&quot;C&quot;,&quot;D&quot;,&quot;E&quot;,
12 * <br> &nbsp;&nbsp; &quot;F&quot; and &quot;G&quot; and halfkeys represented with &quot;b&quot; and &quot;#&quot;.
13 * Minor is<br>
14 * <p/>
15 * &nbsp;&nbsp; represented as &quot;m&quot;, e.g. &quot;Dbm&quot; $00. Off key is represented with an<br> &nbsp;&nbsp;
16 * &quot;o&quot; only.</p>
17 *
18 * @author Eric Farng
19 * @version $Revision: 1.4 $
20 */
21public class FrameBodyTKEY extends AbstractFrameBodyTextInformation {
22 
23    /**
24     * Creates a new FrameBodyTKEY object.
25     */
26    public FrameBodyTKEY() {
27        super();
28    }
29 
30    /**
31     * Creates a new FrameBodyTKEY object.
32     */
33    public FrameBodyTKEY(final FrameBodyTKEY body) {
34        super(body);
35    }
36 
37    /**
38     * Creates a new FrameBodyTKEY object.
39     */
40    public FrameBodyTKEY(final byte textEncoding, final String text) {
41        super(textEncoding, text);
42    }
43 
44    /**
45     * Creates a new FrameBodyTKEY object.
46     */
47    public FrameBodyTKEY(final RandomAccessFile file) throws java.io.IOException, InvalidTagException {
48        super(file);
49    }
50 
51    public String getIdentifier() {
52        return "TKEY";
53    }
54}

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