EMMA Coverage Report (generated Wed Sep 07 21:54:19 EEST 2005)
[all classes][PIANOS.datastructures]

COVERAGE SUMMARY FOR SOURCE FILE [DistributionSkeleton.java]

nameclass, %method, %block, %line, %
DistributionSkeleton.java100% (1/1)100% (6/6)100% (53/53)100% (15/15)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class DistributionSkeleton100% (1/1)100% (6/6)100% (53/53)100% (15/15)
DistributionSkeleton (String, int, boolean [], boolean, boolean): void 100% (1/1)100% (18/18)100% (7/7)
getName (): String 100% (1/1)100% (3/3)100% (1/1)
getNumberOfParameters (): int 100% (1/1)100% (3/3)100% (1/1)
getTypeOfParameters (): boolean [] 100% (1/1)100% (23/23)100% (4/4)
hasFreqFunction (): boolean 100% (1/1)100% (3/3)100% (1/1)
hasGenFunction (): boolean 100% (1/1)100% (3/3)100% (1/1)

1package PIANOS.datastructures;
2 
3class DistributionSkeleton{
4 
5    private int numberOfParameters;
6    private boolean[] typeOfParameters;
7    private boolean hasFreqFunction;
8    private boolean hasGenFunction;
9    private String name;
10 
11    public DistributionSkeleton (String name, int numberOfParameters, boolean[] typeOfParameters, boolean hasFreqFunction, boolean hasGenFunction){
12        this.name = name;
13        this.numberOfParameters = numberOfParameters;
14        this.typeOfParameters = typeOfParameters;
15        this.hasFreqFunction = hasFreqFunction;
16        this.hasGenFunction = hasGenFunction;
17    }
18 
19    public String getName (){
20        return name;
21    }
22 
23    public int getNumberOfParameters (){
24        return numberOfParameters;
25    }
26 
27    public boolean[] getTypeOfParameters (){
28        boolean[] temp = new boolean[typeOfParameters.length];
29        for (int i = 0; i<typeOfParameters.length; i++)
30            temp[i] = typeOfParameters[i];
31        return temp;
32    }
33 
34    public boolean hasGenFunction (){
35        return hasGenFunction;
36    }
37 
38    public boolean hasFreqFunction (){
39        return hasFreqFunction;
40    }
41}

[all classes][PIANOS.datastructures]
EMMA 2.0.5312 (C) Vladimir Roubtsov