EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012) |
---|
[all classes][de.uka.ipd.sdq.tcfmoop.outputtree] |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
Tree.java | 0% (0/1) | 0% (0/1) | 0% (0/6) | 0% (0/2) |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
class Tree | 0% (0/1) | 0% (0/1) | 0% (0/6) | 0% (0/2) |
Tree (String, Node$NodeType): void | 0% (0/1) | 0% (0/6) | 0% (0/2) |
1 | package de.uka.ipd.sdq.tcfmoop.outputtree; |
2 | |
3 | /** |
4 | * Represents a Tree data structure. |
5 | * @author Atanas Dimitrov |
6 | */ |
7 | public class Tree extends Node{ |
8 | |
9 | /** |
10 | * Creates a new tree |
11 | * @param rootElementValue information stored in the root Node |
12 | * @param type type of the root Node. |
13 | */ |
14 | public Tree(String rootElementValue, NodeType type){ |
15 | super(null, rootElementValue, type); |
16 | } |
17 | |
18 | } |
[all classes][de.uka.ipd.sdq.tcfmoop.outputtree] |
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov |