Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/mappings/util/JpaCoreMappingsSwitch.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/mappings/util/JpaCoreMappingsSwitch.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/mappings/util/JpaCoreMappingsSwitch.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/mappings/util/JpaCoreMappingsSwitch.java
index 99bc98d55a..db4c09b572 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/mappings/util/JpaCoreMappingsSwitch.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/mappings/util/JpaCoreMappingsSwitch.java
@@ -44,7 +44,6 @@ import org.eclipse.jpt.core.internal.mappings.INamedQuery;
import org.eclipse.jpt.core.internal.mappings.INonOwningMapping;
import org.eclipse.jpt.core.internal.mappings.IOneToMany;
import org.eclipse.jpt.core.internal.mappings.IOneToOne;
-import org.eclipse.jpt.core.internal.mappings.IOrderBy;
import org.eclipse.jpt.core.internal.mappings.IOverride;
import org.eclipse.jpt.core.internal.mappings.IPrimaryKeyJoinColumn;
import org.eclipse.jpt.core.internal.mappings.IQuery;
@@ -628,17 +627,6 @@ public class JpaCoreMappingsSwitch<T>
result = defaultCase(theEObject);
return result;
}
- case JpaCoreMappingsPackage.IORDER_BY : {
- IOrderBy iOrderBy = (IOrderBy) theEObject;
- T result = caseIOrderBy(iOrderBy);
- if (result == null)
- result = caseIJpaSourceObject(iOrderBy);
- if (result == null)
- result = caseIJpaEObject(iOrderBy);
- if (result == null)
- result = defaultCase(theEObject);
- return result;
- }
case JpaCoreMappingsPackage.IQUERY : {
IQuery iQuery = (IQuery) theEObject;
T result = caseIQuery(iQuery);
@@ -1244,21 +1232,6 @@ public class JpaCoreMappingsSwitch<T>
}
/**
- * Returns the result of interpretting the object as an instance of '<em>IOrder By</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 interpretting the object as an instance of '<em>IOrder By</em>'.
- * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
- * @generated
- */
- public T caseIOrderBy(IOrderBy object) {
- return null;
- }
-
- /**
* Returns the result of interpretting the object as an instance of '<em>IQuery</em>'.
* <!-- begin-user-doc -->
* This implementation returns null;

Back to the top