/** * Copyright (c) 2005-2006 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 - Initial API and implementation */ package org.eclipse.emf.examples.extlibrary.util; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EPackage; import org.eclipse.emf.ecore.util.Switch; import org.eclipse.emf.examples.extlibrary.*; /** * <!-- 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.emf.examples.extlibrary.EXTLibraryPackage * @generated */ public class EXTLibrarySwitch<T> extends Switch<T> { /** * The cached model package * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected static EXTLibraryPackage modelPackage; /** * Creates an instance of the switch. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EXTLibrarySwitch() { if (modelPackage == null) { modelPackage = EXTLibraryPackage.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 EXTLibraryPackage.BOOK: { Book book = (Book)theEObject; T result = caseBook(book); if (result == null) result = caseCirculatingItem(book); if (result == null) result = caseItem(book); if (result == null) result = caseLendable(book); if (result == null) result = defaultCase(theEObject); return result; } case EXTLibraryPackage.LIBRARY: { Library library = (Library)theEObject; T result = caseLibrary(library); if (result == null) result = caseAddressable(library); if (result == null) result = defaultCase(theEObject); return result; } case EXTLibraryPackage.WRITER: { Writer writer = (Writer)theEObject; T result = caseWriter(writer); if (result == null) result = casePerson(writer); if (result == null) result = caseAddressable(writer); if (result == null) result = defaultCase(theEObject); return result; } case EXTLibraryPackage.ITEM: { Item item = (Item)theEObject; T result = caseItem(item); if (result == null) result = defaultCase(theEObject); return result; } case EXTLibraryPackage.LENDABLE: { Lendable lendable = (Lendable)theEObject; T result = caseLendable(lendable); if (result == null) result = defaultCase(theEObject); return result; } case EXTLibraryPackage.CIRCULATING_ITEM: { CirculatingItem circulatingItem = (CirculatingItem)theEObject; T result = caseCirculatingItem(circulatingItem); if (result == null) result = caseItem(circulatingItem); if (result == null) result = caseLendable(circulatingItem); if (result == null) result = defaultCase(theEObject); return result; } case EXTLibraryPackage.PERIODICAL: { Periodical periodical = (Periodical)theEObject; T result = casePeriodical(periodical); if (result == null) result = caseItem(periodical); if (result == null) result = defaultCase(theEObject); return result; } case EXTLibraryPackage.AUDIO_VISUAL_ITEM: { AudioVisualItem audioVisualItem = (AudioVisualItem)theEObject; T result = caseAudioVisualItem(audioVisualItem); if (result == null) result = caseCirculatingItem(audioVisualItem); if (result == null) result = caseItem(audioVisualItem); if (result == null) result = caseLendable(audioVisualItem); if (result == null) result = defaultCase(theEObject); return result; } case EXTLibraryPackage.BOOK_ON_TAPE: { BookOnTape bookOnTape = (BookOnTape)theEObject; T result = caseBookOnTape(bookOnTape); if (result == null) result = caseAudioVisualItem(bookOnTape); if (result == null) result = caseCirculatingItem(bookOnTape); if (result == null) result = caseItem(bookOnTape); if (result == null) result = caseLendable(bookOnTape); if (result == null) result = defaultCase(theEObject); return result; } case EXTLibraryPackage.VIDEO_CASSETTE: { VideoCassette videoCassette = (VideoCassette)theEObject; T result = caseVideoCassette(videoCassette); if (result == null) result = caseAudioVisualItem(videoCassette); if (result == null) result = caseCirculatingItem(videoCassette); if (result == null) result = caseItem(videoCassette); if (result == null) result = caseLendable(videoCassette); if (result == null) result = defaultCase(theEObject); return result; } case EXTLibraryPackage.BORROWER: { Borrower borrower = (Borrower)theEObject; T result = caseBorrower(borrower); if (result == null) result = casePerson(borrower); if (result == null) result = caseAddressable(borrower); if (result == null) result = defaultCase(theEObject); return result; } case EXTLibraryPackage.PERSON: { Person person = (Person)theEObject; T result = casePerson(person); if (result == null) result = caseAddressable(person); if (result == null) result = defaultCase(theEObject); return result; } case EXTLibraryPackage.EMPLOYEE: { Employee employee = (Employee)theEObject; T result = caseEmployee(employee); if (result == null) result = casePerson(employee); if (result == null) result = caseAddressable(employee); if (result == null) result = defaultCase(theEObject); return result; } case EXTLibraryPackage.ADDRESSABLE: { Addressable addressable = (Addressable)theEObject; T result = caseAddressable(addressable); if (result == null) result = defaultCase(theEObject); return result; } default: return defaultCase(theEObject); } } /** * Returns the result of interpreting the object as an instance of '<em>Book</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>Book</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseBook(Book object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>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>Library</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseLibrary(Library object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Writer</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>Writer</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseWriter(Writer object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Item</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>Item</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseItem(Item object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Lendable</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>Lendable</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseLendable(Lendable object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Circulating Item</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>Circulating Item</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseCirculatingItem(CirculatingItem object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Periodical</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>Periodical</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T casePeriodical(Periodical object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Audio Visual Item</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>Audio Visual Item</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseAudioVisualItem(AudioVisualItem object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Book On Tape</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>Book On Tape</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseBookOnTape(BookOnTape object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Video Cassette</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>Video Cassette</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseVideoCassette(VideoCassette object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Borrower</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>Borrower</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseBorrower(Borrower object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Person</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>Person</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T casePerson(Person object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Employee</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>Employee</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseEmployee(Employee object) { return null; } /** * Returns the result of interpreting the object as an instance of '<em>Addressable</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>Addressable</em>'. * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) * @generated */ public T caseAddressable(Addressable 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; } } //EXTLibrarySwitch