/** * <copyright> * </copyright> * * $Id$ */ package org.jboss.tools.smooks.model.javabean12.util; import java.util.List; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.xml.type.AnyType; import org.jboss.tools.smooks.model.common.AbstractAnyType; import org.jboss.tools.smooks.model.javabean12.*; import org.jboss.tools.smooks.model.smooks.AbstractResourceConfig; import org.jboss.tools.smooks.model.smooks.ElementVisitor; /** * <!-- 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.jboss.tools.smooks.model.javabean12.Javabean12Package * @generated */ public class Javabean12Switch { /** * The cached model package * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected static Javabean12Package modelPackage; /** * Creates an instance of the switch. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Javabean12Switch() { if (modelPackage == null) { modelPackage = Javabean12Package.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 Object 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 Object doSwitch(EClass theEClass, EObject theEObject) { if (theEClass.eContainer() == modelPackage) { return doSwitch(theEClass.getClassifierID(), theEObject); } else { List eSuperTypes = theEClass.getESuperTypes(); return eSuperTypes.isEmpty() ? defaultCase(theEObject) : doSwitch((EClass)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 Object doSwitch(int classifierID, EObject theEObject) { switch (classifierID) { case Javabean12Package.BEAN_TYPE: { BeanType beanType = (BeanType)theEObject; Object result = caseBeanType(beanType); if (result == null) result = caseElementVisitor(beanType); if (result == null) result = caseAbstractResourceConfig(beanType); if (result == null) result = caseAbstractAnyType(beanType); if (result == null) result = caseAnyType(beanType); if (result == null) result = defaultCase(theEObject); return result; } case Javabean12Package.DECODE_PARAM_TYPE: { DecodeParamType decodeParamType = (DecodeParamType)theEObject; Object result = caseDecodeParamType(decodeParamType); if (result == null) result = caseAbstractAnyType(decodeParamType); if (result == null) result = caseAnyType(decodeParamType); if (result == null) result = defaultCase(theEObject); return result; } case Javabean12Package.JAVABEAN12_DOCUMENT_ROOT: { Javabean12DocumentRoot javabean12DocumentRoot = (Javabean12DocumentRoot)theEObject; Object result = caseJavabean12DocumentRoot(javabean12DocumentRoot); if (result == null) result = defaultCase(theEObject); return result; } case Javabean12Package.EXPRESSION_TYPE: { ExpressionType expressionType = (ExpressionType)theEObject; Object result = caseExpressionType(expressionType); if (result == null) result = caseAbstractAnyType(expressionType); if (result == null) result = caseAnyType(expressionType); if (result == null) result = defaultCase(theEObject); return result; } case Javabean12Package.RESULT_TYPE: { ResultType resultType = (ResultType)theEObject; Object result = caseResultType(resultType); if (result == null) result = caseElementVisitor(resultType); if (result == null) result = caseAbstractResourceConfig(resultType); if (result == null) result = caseAbstractAnyType(resultType); if (result == null) result = caseAnyType(resultType); if (result == null) result = defaultCase(theEObject); return result; } case Javabean12Package.VALUE_TYPE: { ValueType valueType = (ValueType)theEObject; Object result = caseValueType(valueType); if (result == null) result = caseAbstractAnyType(valueType); if (result == null) result = caseAnyType(valueType); if (result == null) result = defaultCase(theEObject); return result; } case Javabean12Package.WIRING_TYPE: { WiringType wiringType = (WiringType)theEObject; Object result = caseWiringType(wiringType); if (result == null) result = caseAbstractAnyType(wiringType); if (result == null) result = caseAnyType(wiringType); if (result == null) result = defaultCase(theEObject); return result; } default: return defaultCase(theEObject); } } /** * Returns the result of interpreting the object as an instance of '<em>Bean Type</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>Bean Type</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public Object caseBeanType(BeanType object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Decode Param Type</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>Decode Param Type</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public Object caseDecodeParamType(DecodeParamType object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Document Root</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>Document Root</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public Object caseJavabean12DocumentRoot(Javabean12DocumentRoot object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Expression Type</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>Expression Type</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public Object caseExpressionType(ExpressionType object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Result Type</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>Result Type</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public Object caseResultType(ResultType object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Value Type</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>Value Type</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public Object caseValueType(ValueType object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Wiring Type</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>Wiring Type</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public Object caseWiringType(WiringType object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Any Type</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>Any Type</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public Object caseAnyType(AnyType object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Abstract Any Type</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>Abstract Any Type</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public Object caseAbstractAnyType(AbstractAnyType object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Abstract Resource Config</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>Abstract Resource Config</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public Object caseAbstractResourceConfig(AbstractResourceConfig object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Element Visitor</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>Element Visitor</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public Object caseElementVisitor(ElementVisitor 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 Object defaultCase(EObject object) { return null; } } //Javabean12Switch