/** * Copyright (c) 2015 committers of YAKINDU and others. * 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: * committers of YAKINDU - initial API and implementation * */ package org.yakindu.sct.model.sgen.util; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EPackage; import org.eclipse.emf.ecore.util.Switch; import org.yakindu.base.base.NamedElement; import org.yakindu.sct.model.sgen.*; import org.yakindu.sct.model.sgen.FeatureConfiguration; import org.yakindu.sct.model.sgen.FeatureParameter; import org.yakindu.sct.model.sgen.FeatureParameterValue; import org.yakindu.sct.model.sgen.FeatureType; import org.yakindu.sct.model.sgen.FeatureTypeLibrary; import org.yakindu.sct.model.sgen.GeneratorConfiguration; import org.yakindu.sct.model.sgen.GeneratorEntry; import org.yakindu.sct.model.sgen.GeneratorModel; import org.yakindu.sct.model.sgen.SGenPackage; /** * <!-- 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.yakindu.sct.model.sgen.SGenPackage * @generated */ public class SGenSwitch<T> extends Switch<T> { /** * The cached model package * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected static SGenPackage modelPackage; /** * Creates an instance of the switch. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public SGenSwitch() { if (modelPackage == null) { modelPackage = SGenPackage.eINSTANCE; } } /** * Checks whether this is a switch for the given package. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param ePackage the package in question. * @return whether this is a switch for the given package. * @generated */ @Override protected boolean isSwitchFor(EPackage ePackage) { return ePackage == modelPackage; } /** * 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 */ @Override protected T doSwitch(int classifierID, EObject theEObject) { switch (classifierID) { case SGenPackage.GENERATOR_MODEL: { GeneratorModel generatorModel = (GeneratorModel)theEObject; T result = caseGeneratorModel(generatorModel); if (result == null) result = defaultCase(theEObject); return result; } case SGenPackage.GENERATOR_CONFIGURATION: { GeneratorConfiguration generatorConfiguration = (GeneratorConfiguration)theEObject; T result = caseGeneratorConfiguration(generatorConfiguration); if (result == null) result = defaultCase(theEObject); return result; } case SGenPackage.FEATURE_TYPE: { FeatureType featureType = (FeatureType)theEObject; T result = caseFeatureType(featureType); if (result == null) result = caseNamedElement(featureType); if (result == null) result = caseDeprecatableElement(featureType); if (result == null) result = defaultCase(theEObject); return result; } case SGenPackage.FEATURE_PARAMETER: { FeatureParameter featureParameter = (FeatureParameter)theEObject; T result = caseFeatureParameter(featureParameter); if (result == null) result = caseNamedElement(featureParameter); if (result == null) result = caseDeprecatableElement(featureParameter); if (result == null) result = defaultCase(theEObject); return result; } case SGenPackage.FEATURE_CONFIGURATION: { FeatureConfiguration featureConfiguration = (FeatureConfiguration)theEObject; T result = caseFeatureConfiguration(featureConfiguration); if (result == null) result = defaultCase(theEObject); return result; } case SGenPackage.GENERATOR_ENTRY: { GeneratorEntry generatorEntry = (GeneratorEntry)theEObject; T result = caseGeneratorEntry(generatorEntry); if (result == null) result = defaultCase(theEObject); return result; } case SGenPackage.FEATURE_PARAMETER_VALUE: { FeatureParameterValue featureParameterValue = (FeatureParameterValue)theEObject; T result = caseFeatureParameterValue(featureParameterValue); if (result == null) result = defaultCase(theEObject); return result; } case SGenPackage.FEATURE_TYPE_LIBRARY: { FeatureTypeLibrary featureTypeLibrary = (FeatureTypeLibrary)theEObject; T result = caseFeatureTypeLibrary(featureTypeLibrary); if (result == null) result = defaultCase(theEObject); return result; } case SGenPackage.LITERAL: { Literal literal = (Literal)theEObject; T result = caseLiteral(literal); if (result == null) result = defaultCase(theEObject); return result; } case SGenPackage.BOOL_LITERAL: { BoolLiteral boolLiteral = (BoolLiteral)theEObject; T result = caseBoolLiteral(boolLiteral); if (result == null) result = caseLiteral(boolLiteral); if (result == null) result = defaultCase(theEObject); return result; } case SGenPackage.INT_LITERAL: { IntLiteral intLiteral = (IntLiteral)theEObject; T result = caseIntLiteral(intLiteral); if (result == null) result = caseLiteral(intLiteral); if (result == null) result = defaultCase(theEObject); return result; } case SGenPackage.REAL_LITERAL: { RealLiteral realLiteral = (RealLiteral)theEObject; T result = caseRealLiteral(realLiteral); if (result == null) result = caseLiteral(realLiteral); if (result == null) result = defaultCase(theEObject); return result; } case SGenPackage.STRING_LITERAL: { StringLiteral stringLiteral = (StringLiteral)theEObject; T result = caseStringLiteral(stringLiteral); if (result == null) result = caseLiteral(stringLiteral); if (result == null) result = defaultCase(theEObject); return result; } case SGenPackage.DEPRECATABLE_ELEMENT: { DeprecatableElement deprecatableElement = (DeprecatableElement)theEObject; T result = caseDeprecatableElement(deprecatableElement); if (result == null) result = defaultCase(theEObject); return result; } default: return defaultCase(theEObject); } } /** * Returns the result of interpreting the object as an instance of '<em>Generator Model</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>Generator Model</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseGeneratorModel(GeneratorModel object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Generator Configuration</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>Generator Configuration</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseGeneratorConfiguration(GeneratorConfiguration object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Feature 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>Feature Type</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseFeatureType(FeatureType object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Feature Parameter</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>Feature Parameter</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseFeatureParameter(FeatureParameter object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Feature Configuration</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>Feature Configuration</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseFeatureConfiguration(FeatureConfiguration object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Generator Entry</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>Generator Entry</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseGeneratorEntry(GeneratorEntry object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Feature Parameter Value</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>Feature Parameter Value</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseFeatureParameterValue(FeatureParameterValue object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Feature Type Library</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>Feature Type Library</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseFeatureTypeLibrary(FeatureTypeLibrary object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Literal</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>Literal</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseLiteral(Literal object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Bool Literal</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>Bool Literal</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseBoolLiteral(BoolLiteral object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Int Literal</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>Int Literal</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseIntLiteral(IntLiteral object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Real Literal</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>Real Literal</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseRealLiteral(RealLiteral object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>String Literal</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>String Literal</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseStringLiteral(StringLiteral object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Deprecatable 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>Deprecatable Element</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseDeprecatableElement(DeprecatableElement object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Named 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>Named Element</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseNamedElement(NamedElement 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 */ @Override public T defaultCase(EObject object) { return null; } } //SGenSwitch