| 1 | package de.uka.ipd.sdq.pcm.stochasticexpressions; |
| 2 | |
| 3 | import org.eclipse.emf.ecore.EClass; |
| 4 | import org.eclipse.emf.ecore.EObject; |
| 5 | |
| 6 | import de.uka.ipd.sdq.pcm.parameter.CharacterisedVariable; |
| 7 | import de.uka.ipd.sdq.pcm.parameter.ParameterPackage; |
| 8 | import de.uka.ipd.sdq.stoex.util.StoexSwitch; |
| 9 | |
| 10 | public 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 | } |