Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/util/Xpand3Switch.java')
-rw-r--r--plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/util/Xpand3Switch.java48
1 files changed, 1 insertions, 47 deletions
diff --git a/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/util/Xpand3Switch.java b/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/util/Xpand3Switch.java
index 464fad97..5e177706 100644
--- a/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/util/Xpand3Switch.java
+++ b/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/util/Xpand3Switch.java
@@ -2,7 +2,7 @@
* <copyright>
* </copyright>
*
- * $Id: Xpand3Switch.java,v 1.3 2008/03/06 15:37:18 jkohnlein Exp $
+ * $Id: Xpand3Switch.java,v 1.4 2008/03/07 08:28:22 sefftinge Exp $
*/
package org.eclipse.xpand3.util;
@@ -114,22 +114,6 @@ public class Xpand3Switch<T> {
if (result == null) result = defaultCase(theEObject);
return result;
}
- case Xpand3Package.SIMPLE_IDENTIFIER: {
- SimpleIdentifier simpleIdentifier = (SimpleIdentifier)theEObject;
- T result = caseSimpleIdentifier(simpleIdentifier);
- if (result == null) result = caseIdentifier(simpleIdentifier);
- if (result == null) result = caseSyntaxElement(simpleIdentifier);
- if (result == null) result = defaultCase(theEObject);
- return result;
- }
- case Xpand3Package.COMPOSED_IDENTIFIER: {
- ComposedIdentifier composedIdentifier = (ComposedIdentifier)theEObject;
- T result = caseComposedIdentifier(composedIdentifier);
- if (result == null) result = caseIdentifier(composedIdentifier);
- if (result == null) result = caseSyntaxElement(composedIdentifier);
- if (result == null) result = defaultCase(theEObject);
- return result;
- }
case Xpand3Package.DECLARED_PARAMETER: {
DeclaredParameter declaredParameter = (DeclaredParameter)theEObject;
T result = caseDeclaredParameter(declaredParameter);
@@ -202,36 +186,6 @@ public class Xpand3Switch<T> {
}
/**
- * Returns the result of interpreting the object as an instance of '<em>Simple Identifier</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>Simple Identifier</em>'.
- * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
- * @generated
- */
- public T caseSimpleIdentifier(SimpleIdentifier object) {
- return null;
- }
-
- /**
- * Returns the result of interpreting the object as an instance of '<em>Composed Identifier</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>Composed Identifier</em>'.
- * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
- * @generated
- */
- public T caseComposedIdentifier(ComposedIdentifier object) {
- return null;
- }
-
- /**
* Returns the result of interpreting the object as an instance of '<em>Declared Parameter</em>'.
* <!-- begin-user-doc -->
* This implementation returns null;

Back to the top