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

COVERAGE SUMMARY FOR SOURCE FILE [FrameBodyTLAN.java]

nameclass, %method, %block, %line, %
FrameBodyTLAN.java0%   (0/1)0%   (0/6)0%   (0/33)0%   (0/12)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FrameBodyTLAN0%   (0/1)0%   (0/6)0%   (0/33)0%   (0/12)
FrameBodyTLAN (): void 0%   (0/1)0%   (0/3)0%   (0/2)
FrameBodyTLAN (FrameBodyTLAN): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTLAN (RandomAccessFile): void 0%   (0/1)0%   (0/4)0%   (0/2)
FrameBodyTLAN (byte, String): void 0%   (0/1)0%   (0/5)0%   (0/2)
getIdentifier (): String 0%   (0/1)0%   (0/2)0%   (0/1)
setupObjectList (): void 0%   (0/1)0%   (0/15)0%   (0/3)

1package org.farng.mp3.id3;
2 
3import org.farng.mp3.InvalidTagException;
4import org.farng.mp3.object.ObjectNumberHashMap;
5import org.farng.mp3.object.ObjectStringHashMap;
6 
7import java.io.RandomAccessFile;
8 
9/**
10 * &nbsp;&nbsp; The 'Language' frame should contain the languages of the text or<br> &nbsp;&nbsp; lyrics spoken or sung
11 * in the audio. The language is represented with<br> &nbsp;&nbsp; three characters according to ISO-639-2 [ISO-639-2].
12 * If more than one<br> &nbsp;&nbsp; language is used in the text their language codes should follow<br>
13 * <p/>
14 * &nbsp;&nbsp; according to the amount of their usage, e.g. &quot;eng&quot; $00 &quot;sve&quot; $00.</p>
15 *
16 * @author Eric Farng
17 * @version $Revision: 1.4 $
18 */
19public class FrameBodyTLAN extends AbstractFrameBodyTextInformation {
20 
21    /**
22     * Creates a new FrameBodyTLAN object.
23     */
24    public FrameBodyTLAN() {
25        super();
26    }
27 
28    /**
29     * Creates a new FrameBodyTLAN object.
30     */
31    public FrameBodyTLAN(final FrameBodyTLAN body) {
32        super(body);
33    }
34 
35    /**
36     * Creates a new FrameBodyTLAN object.
37     */
38    public FrameBodyTLAN(final byte textEncoding, final String text) {
39        super(textEncoding, text);
40    }
41 
42    /**
43     * Creates a new FrameBodyTLAN object.
44     */
45    public FrameBodyTLAN(final RandomAccessFile file) throws java.io.IOException, InvalidTagException {
46        super(file);
47    }
48 
49    public String getIdentifier() {
50        return "TLAN";
51    }
52 
53    protected void setupObjectList() {
54        appendToObjectList(new ObjectNumberHashMap("Text Encoding", 1));
55        appendToObjectList(new ObjectStringHashMap("Language", 3));
56    }
57}

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