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

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTFLT.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FrameBodyTFLT0%   (0/1)0%   (0/5)0%   (0/18)0%   (0/9)
FrameBodyTFLT (): void 0%   (0/1)0%   (0/3)0%   (0/2)
FrameBodyTFLT (FrameBodyTFLT): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTFLT (RandomAccessFile): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTFLT (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 'File type' frame indicates which type of audio this tag defines.<br> &nbsp;&nbsp; The following
9 * types and refinements are defined:</p>
10 * <p/>
11 * <p>&nbsp;&nbsp;&nbsp;&nbsp; MIME&nbsp;&nbsp; MIME type follows<br>
12 * <p/>
13 * &nbsp;&nbsp;&nbsp;&nbsp; MPG&nbsp;&nbsp;&nbsp; MPEG Audio<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
14 * /1&nbsp;&nbsp;&nbsp;&nbsp; MPEG 1/2 layer I<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /2&nbsp;&nbsp;&nbsp;&nbsp; MPEG
15 * 1/2 layer II<br>
16 * <p/>
17 * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /3&nbsp;&nbsp;&nbsp;&nbsp; MPEG 1/2 layer III<br>
18 * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /2.5&nbsp;&nbsp; MPEG 2.5<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
19 * /AAC&nbsp;&nbsp; Advanced audio compression<br>
20 * <p/>
21 * &nbsp;&nbsp;&nbsp;&nbsp; VQF&nbsp;&nbsp;&nbsp; Transform-domain Weighted Interleave Vector Quantisation<br>
22 * &nbsp;&nbsp;&nbsp;&nbsp; PCM&nbsp;&nbsp;&nbsp; Pulse Code Modulated audio</p>
23 * <p/>
24 * <p>&nbsp;&nbsp; but other types may be used, but not for these types though. This is<br> &nbsp;&nbsp; used in a
25 * similar way to the predefined types in the &quot;TMED&quot;
26 * <p/>
27 * frame,<br> &nbsp;&nbsp; but without parentheses. If this frame is not present audio type is<br> &nbsp;&nbsp; assumed
28 * to be &quot;MPG&quot;.</p>
29 *
30 * @author Eric Farng
31 * @version $Revision: 1.4 $
32 */
33public class FrameBodyTFLT extends AbstractFrameBodyTextInformation {
34 
35    /**
36     * Creates a new FrameBodyTFLT object.
37     */
38    public FrameBodyTFLT() {
39        super();
40    }
41 
42    /**
43     * Creates a new FrameBodyTFLT object.
44     */
45    public FrameBodyTFLT(final FrameBodyTFLT body) {
46        super(body);
47    }
48 
49    /**
50     * Creates a new FrameBodyTFLT object.
51     */
52    public FrameBodyTFLT(final byte textEncoding, final String text) {
53        super(textEncoding, text);
54    }
55 
56    /**
57     * Creates a new FrameBodyTFLT object.
58     */
59    public FrameBodyTFLT(final RandomAccessFile file) throws java.io.IOException, InvalidTagException {
60        super(file);
61    }
62 
63    public String getIdentifier() {
64        return "TFLT";
65    }
66}

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