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

COVERAGE SUMMARY FOR SOURCE FILE [PCMStoExSwitch.java]

nameclass, %method, %block, %line, %
PCMStoExSwitch.java0%   (0/1)0%   (0/3)0%   (0/19)0%   (0/5)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class PCMStoExSwitch0%   (0/1)0%   (0/3)0%   (0/19)0%   (0/5)
PCMStoExSwitch (): void 0%   (0/1)0%   (0/3)0%   (0/1)
caseCharacterisedVariable (CharacterisedVariable): Object 0%   (0/1)0%   (0/2)0%   (0/1)
doSwitch (EClass, EObject): Object 0%   (0/1)0%   (0/14)0%   (0/3)

1package de.uka.ipd.sdq.pcm.stochasticexpressions;
2 
3import org.eclipse.emf.ecore.EClass;
4import org.eclipse.emf.ecore.EObject;
5 
6import de.uka.ipd.sdq.pcm.parameter.CharacterisedVariable;
7import de.uka.ipd.sdq.pcm.parameter.ParameterPackage;
8import de.uka.ipd.sdq.stoex.util.StoexSwitch;
9 
10public class PCMStoExSwitch extends StoexSwitch<Object> {
11 
12        protected Object doSwitch(EClass theEClass, EObject theEObject) {
13                if (theEClass == ParameterPackage.eINSTANCE.getCharacterisedVariable()) {
14                        return caseCharacterisedVariable((CharacterisedVariable)theEObject);
15                }
16                else {
17                        return super.doSwitch(theEClass,theEObject);
18                }
19        }
20 
21        public Object caseCharacterisedVariable(CharacterisedVariable object) {
22                return null;
23        }
24}

[all classes][de.uka.ipd.sdq.pcm.stochasticexpressions]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov