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

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTCON.java]

nameclass, %method, %block, %line, %
FrameBodyTCON.java100% (1/1)80%  (4/5)78%  (14/18)78%  (7/9)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FrameBodyTCON100% (1/1)80%  (4/5)78%  (14/18)78%  (7/9)
FrameBodyTCON (RandomAccessFile): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTCON (): void 100% (1/1)100% (3/3)100% (2/2)
FrameBodyTCON (FrameBodyTCON): void 100% (1/1)100% (4/4)100% (2/2)
FrameBodyTCON (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 
5/**
6 * &nbsp;&nbsp; The 'Content type', which ID3v1 was stored as a one byte numeric<br>
7 * <p/>
8 * &nbsp;&nbsp; value only, is now a string. You may use one or several of the ID3v1<br> &nbsp;&nbsp; types as numerical
9 * strings, or, since the category list would be<br> &nbsp;&nbsp; impossible to maintain with accurate and up to date
10 * categories,<br> &nbsp;&nbsp; define your own. Example: &quot;21&quot; $00 &quot;Eurodisco&quot;
11 * <p/>
12 * $00</p>
13 * <p/>
14 * <p>&nbsp;&nbsp; You may also use any of the following keywords:<br> &nbsp;&nbsp; </p>
15 * <p/>
16 * <p>&nbsp;&nbsp;&nbsp;&nbsp; RX&nbsp; Remix<br> &nbsp;&nbsp;&nbsp;&nbsp; CR&nbsp; Cover</p>
17 *
18 * @author Eric Farng
19 * @version $Revision: 1.4 $
20 */
21public class FrameBodyTCON extends AbstractFrameBodyTextInformation {
22 
23    /**
24     * Creates a new FrameBodyTCON object.
25     */
26    public FrameBodyTCON() {
27        super();
28    }
29 
30    /**
31     * Creates a new FrameBodyTCON object.
32     */
33    public FrameBodyTCON(final FrameBodyTCON body) {
34        super(body);
35    }
36 
37    /**
38     * Creates a new FrameBodyTCON object.
39     */
40    public FrameBodyTCON(final byte textEncoding, final String text) {
41        super(textEncoding, text);
42    }
43 
44    /**
45     * Creates a new FrameBodyTCON object.
46     */
47    public FrameBodyTCON(final java.io.RandomAccessFile file) throws java.io.IOException, InvalidTagException {
48        super(file);
49    }
50 
51    public String getIdentifier() {
52        return "TCON";
53    }
54}

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