EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][de.uka.ipd.sdq.probfunction.math.apache.impl]

COVERAGE SUMMARY FOR SOURCE FILE [LognormalDistributionFromMoments.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class LognormalDistributionFromMoments0%   (0/1)0%   (0/1)0%   (0/18)0%   (0/5)
LognormalDistributionFromMoments (double, double): void 0%   (0/1)0%   (0/18)0%   (0/5)

1package de.uka.ipd.sdq.probfunction.math.apache.impl;
2 
3 
4import org.apache.commons.math.MathException;
5 
6 
7import de.uka.ipd.sdq.probfunction.math.apache.distribution.LognormalDistributionFromMomentsImpl;
8import de.uka.ipd.sdq.probfunction.math.exception.ProbabilityFunctionException;
9 
10public class LognormalDistributionFromMoments extends LognormalDistribution  {
11        
12        /**
13         * Constructs a GammaDist object based on the distribution mean and 
14         * distribution coefficient of variance. 
15         * @param distribution mean 
16         * @param coefficient of variance ( = standard deviation / mean)  
17         * @throws MathException 
18         */
19        public LognormalDistributionFromMoments(double mean, double variance)  {
20                
21                
22                try {
23                        this.internalFunction = new LognormalDistributionFromMomentsImpl(mean, variance);
24                } catch (MathException e) {
25                        throw new ProbabilityFunctionException(e.getLocalizedMessage());
26                        
27                }
28        }
29 
30 
31}

[all classes][de.uka.ipd.sdq.probfunction.math.apache.impl]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov