/** * Copyright (c) 2007 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.test.models.ref.util; import org.eclipse.emf.common.notify.Adapter; import org.eclipse.emf.common.notify.Notifier; import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.test.models.ref.A; import org.eclipse.emf.test.models.ref.B; import org.eclipse.emf.test.models.ref.C; import org.eclipse.emf.test.models.ref.C1; import org.eclipse.emf.test.models.ref.C2; import org.eclipse.emf.test.models.ref.C3; import org.eclipse.emf.test.models.ref.C4; import org.eclipse.emf.test.models.ref.D; import org.eclipse.emf.test.models.ref.E; import org.eclipse.emf.test.models.ref.RefPackage; /** * <!-- begin-user-doc --> * The <b>Adapter Factory</b> for the model. * It provides an adapter <code>createXXX</code> method for each class of the model. * <!-- end-user-doc --> * @see org.eclipse.emf.test.models.ref.RefPackage * @generated */ public class RefAdapterFactory extends AdapterFactoryImpl { /** * The cached model package. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected static RefPackage modelPackage; /** * Creates an instance of the adapter factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public RefAdapterFactory() { if (modelPackage == null) { modelPackage = RefPackage.eINSTANCE; } } /** * Returns whether this factory is applicable for the type of the object. * <!-- begin-user-doc --> * This implementation returns <code>true</code> if the object is either the model's package or is an instance object of the model. * <!-- end-user-doc --> * @return whether this factory is applicable for the type of the object. * @generated */ @Override public boolean isFactoryForType(Object object) { if (object == modelPackage) { return true; } if (object instanceof EObject) { return ((EObject)object).eClass().getEPackage() == modelPackage; } return false; } /** * The switch that delegates to the <code>createXXX</code> methods. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected RefSwitch<Adapter> modelSwitch = new RefSwitch<Adapter>() { @Override public Adapter caseA(A object) { return createAAdapter(); } @Override public Adapter caseB(B object) { return createBAdapter(); } @Override public Adapter caseC1(C1 object) { return createC1Adapter(); } @Override public Adapter caseC2(C2 object) { return createC2Adapter(); } @Override public Adapter caseC(C object) { return createCAdapter(); } @Override public Adapter caseD(D object) { return createDAdapter(); } @Override public Adapter caseE(E object) { return createEAdapter(); } @Override public Adapter caseC4(C4 object) { return createC4Adapter(); } @Override public Adapter caseC3(C3 object) { return createC3Adapter(); } @Override public Adapter defaultCase(EObject object) { return createEObjectAdapter(); } }; /** * Creates an adapter for the <code>target</code>. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param target the object to adapt. * @return the adapter for the <code>target</code>. * @generated */ @Override public Adapter createAdapter(Notifier target) { return modelSwitch.doSwitch((EObject)target); } /** * Creates a new adapter for an object of class '{@link org.eclipse.emf.test.models.ref.A <em>A</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see org.eclipse.emf.test.models.ref.A * @generated */ public Adapter createAAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.emf.test.models.ref.B <em>B</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see org.eclipse.emf.test.models.ref.B * @generated */ public Adapter createBAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.emf.test.models.ref.C1 <em>C1</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see org.eclipse.emf.test.models.ref.C1 * @generated */ public Adapter createC1Adapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.emf.test.models.ref.C2 <em>C2</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see org.eclipse.emf.test.models.ref.C2 * @generated */ public Adapter createC2Adapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.emf.test.models.ref.C <em>C</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see org.eclipse.emf.test.models.ref.C * @generated */ public Adapter createCAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.emf.test.models.ref.D <em>D</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see org.eclipse.emf.test.models.ref.D * @generated */ public Adapter createDAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.emf.test.models.ref.E <em>E</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see org.eclipse.emf.test.models.ref.E * @generated */ public Adapter createEAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.emf.test.models.ref.C4 <em>C4</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see org.eclipse.emf.test.models.ref.C4 * @generated */ public Adapter createC4Adapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.emf.test.models.ref.C3 <em>C3</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see org.eclipse.emf.test.models.ref.C3 * @generated */ public Adapter createC3Adapter() { return null; } /** * Creates a new adapter for the default case. * <!-- begin-user-doc --> * This default implementation returns null. * <!-- end-user-doc --> * @return the new adapter. * @generated */ public Adapter createEObjectAdapter() { return null; } } //RefAdapterFactory