Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/staticTypesystem/util/StaticTypesystemSwitch.java')
-rw-r--r--plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/staticTypesystem/util/StaticTypesystemSwitch.java24
1 files changed, 1 insertions, 23 deletions
diff --git a/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/staticTypesystem/util/StaticTypesystemSwitch.java b/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/staticTypesystem/util/StaticTypesystemSwitch.java
index a58dea17..7c70118b 100644
--- a/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/staticTypesystem/util/StaticTypesystemSwitch.java
+++ b/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/staticTypesystem/util/StaticTypesystemSwitch.java
@@ -2,7 +2,7 @@
* <copyright>
* </copyright>
*
- * $Id: StaticTypesystemSwitch.java,v 1.2 2008/03/04 14:03:38 sefftinge Exp $
+ * $Id: StaticTypesystemSwitch.java,v 1.3 2008/03/04 14:28:06 sefftinge Exp $
*/
package org.eclipse.xpand3.staticTypesystem.util;
@@ -141,13 +141,6 @@ public class StaticTypesystemSwitch<T> {
if (result == null) result = defaultCase(theEObject);
return result;
}
- case StaticTypesystemPackage.DECLARED_OPERATION: {
- DeclaredOperation declaredOperation = (DeclaredOperation)theEObject;
- T result = caseDeclaredOperation(declaredOperation);
- if (result == null) result = caseAbstractNamedElement(declaredOperation);
- if (result == null) result = defaultCase(theEObject);
- return result;
- }
case StaticTypesystemPackage.DECLARED_FUNCTION: {
DeclaredFunction declaredFunction = (DeclaredFunction)theEObject;
T result = caseDeclaredFunction(declaredFunction);
@@ -308,21 +301,6 @@ public class StaticTypesystemSwitch<T> {
}
/**
- * Returns the result of interpreting the object as an instance of '<em>Declared Operation</em>'.
- * <!-- begin-user-doc -->
- * This implementation returns null;
- * returning a non-null result will terminate the switch.
- * <!-- end-user-doc -->
- * @param object the target of the switch.
- * @return the result of interpreting the object as an instance of '<em>Declared Operation</em>'.
- * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
- * @generated
- */
- public T caseDeclaredOperation(DeclaredOperation object) {
- return null;
- }
-
- /**
* Returns the result of interpreting the object as an instance of '<em>Declared Function</em>'.
* <!-- begin-user-doc -->
* This implementation returns null;

Back to the top