/** */ package org.eclipse.gmf.tooling.examples.compartments.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.gmf.tooling.examples.compartments.*; /** * <!-- 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.gmf.tooling.examples.compartments.CompartmentsPackage * @generated */ public class CompartmentsAdapterFactory extends AdapterFactoryImpl { /** * The cached model package. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected static CompartmentsPackage modelPackage; /** * Creates an instance of the adapter factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public CompartmentsAdapterFactory() { if (modelPackage == null) { modelPackage = CompartmentsPackage.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 CompartmentsSwitch<Adapter> modelSwitch = new CompartmentsSwitch<Adapter>() { @Override public Adapter caseCanvas(Canvas object) { return createCanvasAdapter(); } @Override public Adapter caseTopNodeA(TopNodeA object) { return createTopNodeAAdapter(); } @Override public Adapter caseTopNodeB(TopNodeB object) { return createTopNodeBAdapter(); } @Override public Adapter caseChildOfB_E(ChildOfB_E object) { return createChildOfB_EAdapter(); } @Override public Adapter caseChildOfB_G(ChildOfB_G object) { return createChildOfB_GAdapter(); } @Override public Adapter caseTopNode(TopNode object) { return createTopNodeAdapter(); } @Override public Adapter caseChildOfA_C(ChildOfA_C object) { return createChildOfA_CAdapter(); } @Override public Adapter caseChildOfB_F(ChildOfB_F object) { return createChildOfB_FAdapter(); } @Override public Adapter caseChildOfAffixed(ChildOfAffixed object) { return createChildOfAffixedAdapter(); } @Override public Adapter caseChildOfA_D(ChildOfA_D object) { return createChildOfA_DAdapter(); } @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.gmf.tooling.examples.compartments.Canvas <em>Canvas</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.gmf.tooling.examples.compartments.Canvas * @generated */ public Adapter createCanvasAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.gmf.tooling.examples.compartments.TopNodeA <em>Top Node 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.gmf.tooling.examples.compartments.TopNodeA * @generated */ public Adapter createTopNodeAAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.gmf.tooling.examples.compartments.TopNodeB <em>Top Node 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.gmf.tooling.examples.compartments.TopNodeB * @generated */ public Adapter createTopNodeBAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.gmf.tooling.examples.compartments.ChildOfB_E <em>Child Of BE</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.gmf.tooling.examples.compartments.ChildOfB_E * @generated */ public Adapter createChildOfB_EAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.gmf.tooling.examples.compartments.ChildOfB_G <em>Child Of BG</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.gmf.tooling.examples.compartments.ChildOfB_G * @generated */ public Adapter createChildOfB_GAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.gmf.tooling.examples.compartments.TopNode <em>Top Node</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.gmf.tooling.examples.compartments.TopNode * @generated */ public Adapter createTopNodeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.gmf.tooling.examples.compartments.ChildOfA_C <em>Child Of AC</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.gmf.tooling.examples.compartments.ChildOfA_C * @generated */ public Adapter createChildOfA_CAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.gmf.tooling.examples.compartments.ChildOfB_F <em>Child Of BF</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.gmf.tooling.examples.compartments.ChildOfB_F * @generated */ public Adapter createChildOfB_FAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.gmf.tooling.examples.compartments.ChildOfAffixed <em>Child Of Affixed</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.gmf.tooling.examples.compartments.ChildOfAffixed * @generated */ public Adapter createChildOfAffixedAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.eclipse.gmf.tooling.examples.compartments.ChildOfA_D <em>Child Of AD</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.gmf.tooling.examples.compartments.ChildOfA_D * @generated */ public Adapter createChildOfA_DAdapter() { 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; } } //CompartmentsAdapterFactory