/** * Copyright (c) 2008, 2015 IBM Corporation 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: * IBM Corporation - initial API and implementation */ package org.eclipse.e4.ui.model.application.ui.advanced.util; import org.eclipse.e4.ui.model.application.MApplicationElement; import org.eclipse.e4.ui.model.application.commands.MBindings; import org.eclipse.e4.ui.model.application.commands.MHandlerContainer; import org.eclipse.e4.ui.model.application.ui.MContext; import org.eclipse.e4.ui.model.application.ui.MElementContainer; import org.eclipse.e4.ui.model.application.ui.MGenericStack; import org.eclipse.e4.ui.model.application.ui.MGenericTile; import org.eclipse.e4.ui.model.application.ui.MLocalizable; import org.eclipse.e4.ui.model.application.ui.MUIElement; import org.eclipse.e4.ui.model.application.ui.MUILabel; import org.eclipse.e4.ui.model.application.ui.advanced.*; import org.eclipse.e4.ui.model.application.ui.advanced.impl.AdvancedPackageImpl; import org.eclipse.e4.ui.model.application.ui.basic.MPartSashContainer; import org.eclipse.e4.ui.model.application.ui.basic.MPartSashContainerElement; import org.eclipse.e4.ui.model.application.ui.basic.MStackElement; import org.eclipse.e4.ui.model.application.ui.basic.MWindowElement; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EPackage; import org.eclipse.emf.ecore.util.Switch; /** * <!-- 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.eclipse.e4.ui.model.application.ui.advanced.impl.AdvancedPackageImpl * @generated */ public class AdvancedSwitch<T1> extends Switch<T1> { /** * The cached model package * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected static AdvancedPackageImpl modelPackage; /** * Creates an instance of the switch. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public AdvancedSwitch() { if (modelPackage == null) { modelPackage = AdvancedPackageImpl.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 T1 doSwitch(int classifierID, EObject theEObject) { switch (classifierID) { case AdvancedPackageImpl.PLACEHOLDER: { MPlaceholder placeholder = (MPlaceholder)theEObject; T1 result = casePlaceholder(placeholder); if (result == null) result = casePartSashContainerElement(placeholder); if (result == null) result = caseStackElement(placeholder); if (result == null) result = caseUIElement(placeholder); if (result == null) result = caseApplicationElement(placeholder); if (result == null) result = caseLocalizable(placeholder); if (result == null) result = defaultCase(theEObject); return result; } case AdvancedPackageImpl.PERSPECTIVE: { MPerspective perspective = (MPerspective)theEObject; T1 result = casePerspective(perspective); if (result == null) result = caseElementContainer(perspective); if (result == null) result = caseUILabel(perspective); if (result == null) result = caseContext(perspective); if (result == null) result = caseHandlerContainer(perspective); if (result == null) result = caseBindings(perspective); if (result == null) result = caseUIElement(perspective); if (result == null) result = caseApplicationElement(perspective); if (result == null) result = caseLocalizable(perspective); if (result == null) result = defaultCase(theEObject); return result; } case AdvancedPackageImpl.PERSPECTIVE_STACK: { MPerspectiveStack perspectiveStack = (MPerspectiveStack)theEObject; T1 result = casePerspectiveStack(perspectiveStack); if (result == null) result = caseGenericStack(perspectiveStack); if (result == null) result = casePartSashContainerElement(perspectiveStack); if (result == null) result = caseWindowElement(perspectiveStack); if (result == null) result = caseApplicationElement(perspectiveStack); if (result == null) result = caseLocalizable(perspectiveStack); if (result == null) result = caseElementContainer(perspectiveStack); if (result == null) result = caseUIElement(perspectiveStack); if (result == null) result = defaultCase(theEObject); return result; } case AdvancedPackageImpl.AREA: { MArea area = (MArea)theEObject; T1 result = caseArea(area); if (result == null) result = casePartSashContainer(area); if (result == null) result = caseUILabel(area); if (result == null) result = caseGenericTile(area); if (result == null) result = casePartSashContainerElement(area); if (result == null) result = caseWindowElement(area); if (result == null) result = caseElementContainer(area); if (result == null) result = caseUIElement(area); if (result == null) result = caseApplicationElement(area); if (result == null) result = caseLocalizable(area); if (result == null) result = defaultCase(theEObject); return result; } default: return defaultCase(theEObject); } } /** * Returns the result of interpreting the object as an instance of '<em>Placeholder</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>Placeholder</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T1 casePlaceholder(MPlaceholder object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Perspective</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>Perspective</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T1 casePerspective(MPerspective object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Perspective Stack</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>Perspective Stack</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T1 casePerspectiveStack(MPerspectiveStack object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Area</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>Area</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T1 caseArea(MArea object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>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>Element</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T1 caseApplicationElement(MApplicationElement object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>UI 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>UI Element</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T1 caseUIElement(MUIElement object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Part Sash Container 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>Part Sash Container Element</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T1 casePartSashContainerElement(MPartSashContainerElement object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Stack 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>Stack Element</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T1 caseStackElement(MStackElement object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Element Container</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 Container</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public <T extends MUIElement> T1 caseElementContainer(MElementContainer<T> object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Localizable</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>Localizable</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T1 caseLocalizable(MLocalizable object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>UI Label</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>UI Label</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T1 caseUILabel(MUILabel object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Context</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>Context</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T1 caseContext(MContext object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Handler Container</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>Handler Container</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T1 caseHandlerContainer(MHandlerContainer object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Bindings</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>Bindings</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T1 caseBindings(MBindings object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Generic Stack</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>Generic Stack</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public <T extends MUIElement> T1 caseGenericStack(MGenericStack<T> object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Window 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>Window Element</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T1 caseWindowElement(MWindowElement object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Generic Tile</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>Generic Tile</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public <T extends MUIElement> T1 caseGenericTile(MGenericTile<T> object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Part Sash Container</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>Part Sash Container</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T1 casePartSashContainer(MPartSashContainer 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 T1 defaultCase(EObject object) { return null; } } //AdvancedSwitch