Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/expression/util/ExpressionAdapterFactory.java')
-rw-r--r--plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/expression/util/ExpressionAdapterFactory.java20
1 files changed, 19 insertions, 1 deletions
diff --git a/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/expression/util/ExpressionAdapterFactory.java b/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/expression/util/ExpressionAdapterFactory.java
index 2a1d6344..e977e155 100644
--- a/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/expression/util/ExpressionAdapterFactory.java
+++ b/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/expression/util/ExpressionAdapterFactory.java
@@ -2,7 +2,7 @@
* <copyright>
* </copyright>
*
- * $Id: ExpressionAdapterFactory.java,v 1.3 2008/03/10 08:25:35 jkohnlein Exp $
+ * $Id: ExpressionAdapterFactory.java,v 1.4 2008/03/12 09:54:30 jkohnlein Exp $
*/
package org.eclipse.xpand3.expression.util;
@@ -162,6 +162,10 @@ public class ExpressionAdapterFactory extends AdapterFactoryImpl {
return createBinaryOperationAdapter();
}
@Override
+ public Adapter caseUnaryOperation(UnaryOperation object) {
+ return createUnaryOperationAdapter();
+ }
+ @Override
public Adapter caseSyntaxElement(SyntaxElement object) {
return createSyntaxElementAdapter();
}
@@ -494,6 +498,20 @@ public class ExpressionAdapterFactory extends AdapterFactoryImpl {
}
/**
+ * Creates a new adapter for an object of class '{@link org.eclipse.xpand3.expression.UnaryOperation <em>Unary Operation</em>}'.
+ * <!-- begin-user-doc -->
+ * This default implementation returns null so that we can easily ignore cases;
+ * it's useful to ignore a case when inheritance will catch all the cases anyway.
+ * <!-- end-user-doc -->
+ * @return the new adapter.
+ * @see org.eclipse.xpand3.expression.UnaryOperation
+ * @generated
+ */
+ public Adapter createUnaryOperationAdapter() {
+ return null;
+ }
+
+ /**
* Creates a new adapter for an object of class '{@link org.eclipse.xpand3.SyntaxElement <em>Syntax Element</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;

Back to the top