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

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTALB.java]

nameclass, %method, %block, %line, %
FrameBodyTALB.java100% (1/1)100% (5/5)100% (18/18)100% (9/9)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FrameBodyTALB100% (1/1)100% (5/5)100% (18/18)100% (9/9)
FrameBodyTALB (): void 100% (1/1)100% (3/3)100% (2/2)
FrameBodyTALB (FrameBodyTALB): void 100% (1/1)100% (4/4)100% (2/2)
FrameBodyTALB (RandomAccessFile): void 100% (1/1)100% (4/4)100% (2/2)
FrameBodyTALB (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 
5import java.io.RandomAccessFile;
6 
7/**
8 * &nbsp;&nbsp; The 'Album/Movie/Show title' frame is intended for the title of the<br> &nbsp;&nbsp; recording (or
9 * source of sound) from which the audio in the file is<br>
10 * <p/>
11 * &nbsp;&nbsp; taken.</p>
12 *
13 * @author Eric Farng
14 * @version $Revision: 1.4 $
15 */
16public class FrameBodyTALB extends AbstractFrameBodyTextInformation {
17 
18    /**
19     * Creates a new FrameBodyTALB object.
20     */
21    public FrameBodyTALB() {
22        super();
23    }
24 
25    /**
26     * Creates a new FrameBodyTALB object.
27     */
28    public FrameBodyTALB(final FrameBodyTALB body) {
29        super(body);
30    }
31 
32    /**
33     * Creates a new FrameBodyTALB object.
34     */
35    public FrameBodyTALB(final byte textEncoding, final String text) {
36        super(textEncoding, text);
37    }
38 
39    /**
40     * Creates a new FrameBodyTALB object.
41     */
42    public FrameBodyTALB(final RandomAccessFile file) throws java.io.IOException, InvalidTagException {
43        super(file);
44    }
45 
46    public String getIdentifier() {
47        return "TALB";
48    }
49}

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