/** */ package ca.mcgill.ecse.dslreasoner.vampire.yakindumm.util; import ca.mcgill.ecse.dslreasoner.vampire.yakindumm.*; 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; /** * * The Adapter Factory for the model. * It provides an adapter createXXX method for each class of the model. * * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.YakindummPackage * @generated */ public class YakindummAdapterFactory extends AdapterFactoryImpl { /** * The cached model package. * * * @generated */ protected static YakindummPackage modelPackage; /** * Creates an instance of the adapter factory. * * * @generated */ public YakindummAdapterFactory() { if (modelPackage == null) { modelPackage = YakindummPackage.eINSTANCE; } } /** * Returns whether this factory is applicable for the type of the object. * * This implementation returns true if the object is either the model's package or is an instance object of the model. * * @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 createXXX methods. * * * @generated */ protected YakindummSwitch modelSwitch = new YakindummSwitch() { @Override public Adapter casePseudostate(Pseudostate object) { return createPseudostateAdapter(); } @Override public Adapter caseVertex(Vertex object) { return createVertexAdapter(); } @Override public Adapter caseRegion(Region object) { return createRegionAdapter(); } @Override public Adapter caseTransition(Transition object) { return createTransitionAdapter(); } @Override public Adapter caseStatechart(Statechart object) { return createStatechartAdapter(); } @Override public Adapter caseEntry(Entry object) { return createEntryAdapter(); } @Override public Adapter caseState(State object) { return createStateAdapter(); } @Override public Adapter caseRegularState(RegularState object) { return createRegularStateAdapter(); } @Override public Adapter caseCompositeElement(CompositeElement object) { return createCompositeElementAdapter(); } @Override public Adapter caseChoice(Choice object) { return createChoiceAdapter(); } @Override public Adapter caseExit(Exit object) { return createExitAdapter(); } @Override public Adapter caseFinalState(FinalState object) { return createFinalStateAdapter(); } @Override public Adapter defaultCase(EObject object) { return createEObjectAdapter(); } }; /** * Creates an adapter for the target. * * * @param target the object to adapt. * @return the adapter for the target. * @generated */ @Override public Adapter createAdapter(Notifier target) { return modelSwitch.doSwitch((EObject)target); } /** * Creates a new adapter for an object of class '{@link ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Pseudostate Pseudostate}'. * * 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. * * @return the new adapter. * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Pseudostate * @generated */ public Adapter createPseudostateAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Vertex Vertex}'. * * 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. * * @return the new adapter. * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Vertex * @generated */ public Adapter createVertexAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Region Region}'. * * 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. * * @return the new adapter. * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Region * @generated */ public Adapter createRegionAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Transition Transition}'. * * 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. * * @return the new adapter. * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Transition * @generated */ public Adapter createTransitionAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Statechart Statechart}'. * * 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. * * @return the new adapter. * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Statechart * @generated */ public Adapter createStatechartAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Entry Entry}'. * * 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. * * @return the new adapter. * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Entry * @generated */ public Adapter createEntryAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link ca.mcgill.ecse.dslreasoner.vampire.yakindumm.State State}'. * * 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. * * @return the new adapter. * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.State * @generated */ public Adapter createStateAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link ca.mcgill.ecse.dslreasoner.vampire.yakindumm.RegularState Regular State}'. * * 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. * * @return the new adapter. * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.RegularState * @generated */ public Adapter createRegularStateAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link ca.mcgill.ecse.dslreasoner.vampire.yakindumm.CompositeElement Composite Element}'. * * 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. * * @return the new adapter. * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.CompositeElement * @generated */ public Adapter createCompositeElementAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Choice Choice}'. * * 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. * * @return the new adapter. * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Choice * @generated */ public Adapter createChoiceAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Exit Exit}'. * * 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. * * @return the new adapter. * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Exit * @generated */ public Adapter createExitAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link ca.mcgill.ecse.dslreasoner.vampire.yakindumm.FinalState Final State}'. * * 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. * * @return the new adapter. * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.FinalState * @generated */ public Adapter createFinalStateAdapter() { return null; } /** * Creates a new adapter for the default case. * * This default implementation returns null. * * @return the new adapter. * @generated */ public Adapter createEObjectAdapter() { return null; } } //YakindummAdapterFactory