aboutsummaryrefslogtreecommitdiffstats
path: root/Stochastic/hu.bme.mit.inf.dslreasoner.faulttree.model/ecore-gen/hu/bme/mit/inf/dslreasoner/faulttree/model/cft/util/CftSwitch.java
diff options
context:
space:
mode:
Diffstat (limited to 'Stochastic/hu.bme.mit.inf.dslreasoner.faulttree.model/ecore-gen/hu/bme/mit/inf/dslreasoner/faulttree/model/cft/util/CftSwitch.java')
-rw-r--r--Stochastic/hu.bme.mit.inf.dslreasoner.faulttree.model/ecore-gen/hu/bme/mit/inf/dslreasoner/faulttree/model/cft/util/CftSwitch.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/Stochastic/hu.bme.mit.inf.dslreasoner.faulttree.model/ecore-gen/hu/bme/mit/inf/dslreasoner/faulttree/model/cft/util/CftSwitch.java b/Stochastic/hu.bme.mit.inf.dslreasoner.faulttree.model/ecore-gen/hu/bme/mit/inf/dslreasoner/faulttree/model/cft/util/CftSwitch.java
index f2ec9ffb..e32d792b 100644
--- a/Stochastic/hu.bme.mit.inf.dslreasoner.faulttree.model/ecore-gen/hu/bme/mit/inf/dslreasoner/faulttree/model/cft/util/CftSwitch.java
+++ b/Stochastic/hu.bme.mit.inf.dslreasoner.faulttree.model/ecore-gen/hu/bme/mit/inf/dslreasoner/faulttree/model/cft/util/CftSwitch.java
@@ -95,10 +95,10 @@ public class CftSwitch<T> extends Switch<T> {
95 if (result == null) result = defaultCase(theEObject); 95 if (result == null) result = defaultCase(theEObject);
96 return result; 96 return result;
97 } 97 }
98 case CftPackage.INTPUT_EVENT: { 98 case CftPackage.INPUT_EVENT: {
99 IntputEvent intputEvent = (IntputEvent)theEObject; 99 InputEvent inputEvent = (InputEvent)theEObject;
100 T result = caseIntputEvent(intputEvent); 100 T result = caseInputEvent(inputEvent);
101 if (result == null) result = caseEventDeclaration(intputEvent); 101 if (result == null) result = caseEventDeclaration(inputEvent);
102 if (result == null) result = defaultCase(theEObject); 102 if (result == null) result = defaultCase(theEObject);
103 return result; 103 return result;
104 } 104 }
@@ -230,17 +230,17 @@ public class CftSwitch<T> extends Switch<T> {
230 } 230 }
231 231
232 /** 232 /**
233 * Returns the result of interpreting the object as an instance of '<em>Intput Event</em>'. 233 * Returns the result of interpreting the object as an instance of '<em>Input Event</em>'.
234 * <!-- begin-user-doc --> 234 * <!-- begin-user-doc -->
235 * This implementation returns null; 235 * This implementation returns null;
236 * returning a non-null result will terminate the switch. 236 * returning a non-null result will terminate the switch.
237 * <!-- end-user-doc --> 237 * <!-- end-user-doc -->
238 * @param object the target of the switch. 238 * @param object the target of the switch.
239 * @return the result of interpreting the object as an instance of '<em>Intput Event</em>'. 239 * @return the result of interpreting the object as an instance of '<em>Input Event</em>'.
240 * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) 240 * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
241 * @generated 241 * @generated
242 */ 242 */
243 public T caseIntputEvent(IntputEvent object) { 243 public T caseInputEvent(InputEvent object) {
244 return null; 244 return null;
245 } 245 }
246 246