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

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTSSE.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FrameBodyTSSE0%   (0/1)0%   (0/5)0%   (0/18)0%   (0/9)
FrameBodyTSSE (): void 0%   (0/1)0%   (0/3)0%   (0/2)
FrameBodyTSSE (FrameBodyTSSE): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTSSE (RandomAccessFile): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTSSE (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 'Software/Hardware and settings used for encoding' frame<br>
9 * <p/>
10 * &nbsp;&nbsp; includes the used audio encoder and its settings when the file was<br> &nbsp;&nbsp; encoded. Hardware
11 * refers to hardware encoders, not the computer on<br> &nbsp;&nbsp; which a program was run.</p>
12 *
13 * @author Eric Farng
14 * @version $Revision: 1.4 $
15 */
16public class FrameBodyTSSE extends AbstractFrameBodyTextInformation {
17 
18    /**
19     * Creates a new FrameBodyTSSE object.
20     */
21    public FrameBodyTSSE() {
22        super();
23    }
24 
25    /**
26     * Creates a new FrameBodyTSSE object.
27     */
28    public FrameBodyTSSE(final FrameBodyTSSE body) {
29        super(body);
30    }
31 
32    /**
33     * Creates a new FrameBodyTSSE object.
34     */
35    public FrameBodyTSSE(final byte textEncoding, final String text) {
36        super(textEncoding, text);
37    }
38 
39    /**
40     * Creates a new FrameBodyTSSE object.
41     */
42    public FrameBodyTSSE(final RandomAccessFile file) throws java.io.IOException, InvalidTagException {
43        super(file);
44    }
45 
46    public String getIdentifier() {
47        return "TSSE";
48    }
49}

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