/******************************************************************************* * Copyright (c) 2006-2012 * Software Technology Group, Dresden University of Technology * DevBoost GmbH, Berlin, Amtsgericht Charlottenburg, HRB 140026 * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Software Technology Group - TU Dresden, Germany; * DevBoost GmbH - Berlin, Germany * - initial API and implementation ******************************************************************************/ /** * <copyright> * </copyright> * * $Id$ */ package org.reuseware.sokan.util; import java.util.List; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EObject; import org.reuseware.sokan.Artifact; import org.reuseware.sokan.Constraint; import org.reuseware.sokan.FacetedRequest; import org.reuseware.sokan.FacetedResponse; import org.reuseware.sokan.Filter; import org.reuseware.sokan.ID; import org.reuseware.sokan.IdentifiableElement; import org.reuseware.sokan.IndexMetaData; import org.reuseware.sokan.IndexRow; import org.reuseware.sokan.IndexTransaction; import org.reuseware.sokan.SokanPackage; import org.reuseware.sokan.Store; /** * <!-- begin-user-doc --> The <b>Switch</b> for the model's inheritance * hierarchy. It supports the call {@link #doSwitch(EObject) doSwitch(object)} * to invoke the <code>caseXXX</code> method for each class of the model, * starting with the actual class of the object and proceeding up the * inheritance hierarchy until a non-null result is returned, which is the * result of the switch. <!-- end-user-doc --> * @see org.reuseware.sokan.SokanPackage * @generated */ public class SokanSwitch<T> { /** * The cached model package * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ protected static SokanPackage modelPackage; /** * Creates an instance of the switch. * <!-- begin-user-doc --> <!-- * end-user-doc --> * @generated */ public SokanSwitch() { if (modelPackage == null) { modelPackage = SokanPackage.eINSTANCE; } } /** * Calls <code>caseXXX</code> for each class of the model until one returns a non null result; it yields that result. * <!-- begin-user-doc --> <!-- * end-user-doc --> * @return the first non-null result returned by a <code>caseXXX</code> call. * @generated */ public T doSwitch(EObject theEObject) { return doSwitch(theEObject.eClass(), theEObject); } /** * Calls <code>caseXXX</code> for each class of the model until one returns a non null result; it yields that result. * <!-- begin-user-doc --> <!-- * end-user-doc --> * @return the first non-null result returned by a <code>caseXXX</code> call. * @generated */ protected T doSwitch(EClass theEClass, EObject theEObject) { if (theEClass.eContainer() == modelPackage) { return doSwitch(theEClass.getClassifierID(), theEObject); } else { List<EClass> eSuperTypes = theEClass.getESuperTypes(); return eSuperTypes.isEmpty() ? defaultCase(theEObject) : doSwitch(eSuperTypes.get(0), theEObject); } } /** * Calls <code>caseXXX</code> for each class of the model until one returns a non null result; it yields that result. * <!-- begin-user-doc --> <!-- * end-user-doc --> * @return the first non-null result returned by a <code>caseXXX</code> call. * @generated */ protected T doSwitch(int classifierID, EObject theEObject) { switch (classifierID) { case SokanPackage.IDENTIFIABLE_ELEMENT: { IdentifiableElement identifiableElement = (IdentifiableElement)theEObject; T result = caseIdentifiableElement(identifiableElement); if (result == null) result = defaultCase(theEObject); return result; } case SokanPackage.ID: { ID id = (ID)theEObject; T result = caseID(id); if (result == null) result = defaultCase(theEObject); return result; } case SokanPackage.ARTIFACT: { Artifact artifact = (Artifact)theEObject; T result = caseArtifact(artifact); if (result == null) result = caseIdentifiableElement(artifact); if (result == null) result = defaultCase(theEObject); return result; } case SokanPackage.INDEX_ROW: { IndexRow indexRow = (IndexRow)theEObject; T result = caseIndexRow(indexRow); if (result == null) result = defaultCase(theEObject); return result; } case SokanPackage.INDEX_META_DATA: { IndexMetaData indexMetaData = (IndexMetaData)theEObject; T result = caseIndexMetaData(indexMetaData); if (result == null) result = defaultCase(theEObject); return result; } case SokanPackage.STORE: { Store store = (Store)theEObject; T result = caseStore(store); if (result == null) result = defaultCase(theEObject); return result; } case SokanPackage.FILTER: { Filter filter = (Filter)theEObject; T result = caseFilter(filter); if (result == null) result = defaultCase(theEObject); return result; } case SokanPackage.INDEX_TRANSACTION: { IndexTransaction indexTransaction = (IndexTransaction)theEObject; T result = caseIndexTransaction(indexTransaction); if (result == null) result = defaultCase(theEObject); return result; } case SokanPackage.FACETED_RESPONSE: { FacetedResponse facetedResponse = (FacetedResponse)theEObject; T result = caseFacetedResponse(facetedResponse); if (result == null) result = defaultCase(theEObject); return result; } case SokanPackage.FACETED_REQUEST: { FacetedRequest facetedRequest = (FacetedRequest)theEObject; T result = caseFacetedRequest(facetedRequest); if (result == null) result = defaultCase(theEObject); return result; } case SokanPackage.CONSTRAINT: { Constraint constraint = (Constraint)theEObject; T result = caseConstraint(constraint); if (result == null) result = defaultCase(theEObject); return result; } default: return defaultCase(theEObject); } } /** * Returns the result of interpreting the object as an instance of '<em>Identifiable Element</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>Identifiable Element</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseIdentifiableElement(IdentifiableElement object) { return null; } /** * Returns the result of interpreting the object as an instance of ' * <em>ID</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>ID</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseID(ID object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Artifact</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>Artifact</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseArtifact(Artifact object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Index Row</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>Index Row</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseIndexRow(IndexRow object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Index Meta Data</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>Index Meta Data</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseIndexMetaData(IndexMetaData object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Store</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>Store</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseStore(Store object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Filter</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>Filter</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseFilter(Filter object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Index Transaction</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>Index Transaction</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseIndexTransaction(IndexTransaction object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Faceted Request</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>Faceted Request</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseFacetedRequest(FacetedRequest object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Constraint</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>Constraint</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseConstraint(Constraint object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Faceted Response</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>Faceted Response</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseFacetedResponse(FacetedResponse object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>EObject</em>'. * <!-- begin-user-doc --> This implementation returns * null; returning a non-null result will terminate the switch, but this is * the last case anyway. <!-- end-user-doc --> * @param object the target of the switch. * @return the result of interpreting the object as an instance of '<em>EObject</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) * @generated */ public T defaultCase(EObject object) { return null; } } // SokanSwitch