EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][de.uka.ipd.sdq.simucomframework.variables.stoexvisitor]

COVERAGE SUMMARY FOR SOURCE FILE [VariableMode.java]

nameclass, %method, %block, %line, %
VariableMode.java0%   (0/1)0%   (0/4)0%   (0/60)0%   (0/8)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class VariableMode0%   (0/1)0%   (0/4)0%   (0/60)0%   (0/8)
<static initializer> 0%   (0/1)0%   (0/34)0%   (0/7)
VariableMode (String, int): void 0%   (0/1)0%   (0/5)0%   (0/1)
valueOf (String): VariableMode 0%   (0/1)0%   (0/5)0%   (0/1)
values (): VariableMode [] 0%   (0/1)0%   (0/16)0%   (0/1)

1package de.uka.ipd.sdq.simucomframework.variables.stoexvisitor;
2 
3/**
4 * Modes for evaluating stochastic expressions. 
5 * @author Steffen Becker
6 *
7 */
8public enum VariableMode {
9        
10        /**
11         * An exception is thrown if the evaluation encounters a variable unknown 
12         * in the current stackframe 
13         */
14        EXCEPTION_ON_NOT_FOUND,
15        
16        /**
17         * A default value is returned for variables which do not exist in the
18         * stackframe. It is 0 for numeric types and "" for enum types. Useful
19         * for determining bytesizes of the stack contents in cases where not for
20         * all variables characterisations exist 
21         */
22        RETURN_DEFAULT_ON_NOT_FOUND,
23        
24        /**
25         * NULL is returned for variables which do not exist in the
26         * stackframe. Useful for copying stackframes
27         */
28        RETURN_NULL_ON_NOT_FOUND
29}

[all classes][de.uka.ipd.sdq.simucomframework.variables.stoexvisitor]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov