/** */ package org.jboss.tools.windup.windup.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.jboss.tools.windup.windup.*; /** * <!-- 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.jboss.tools.windup.windup.WindupPackage * @generated */ public class WindupAdapterFactory extends AdapterFactoryImpl { /** * The cached model package. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected static WindupPackage modelPackage; /** * Creates an instance of the adapter factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public WindupAdapterFactory() { if (modelPackage == null) { modelPackage = WindupPackage.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 WindupSwitch<Adapter> modelSwitch = new WindupSwitch<Adapter>() { @Override public Adapter caseNamedElement(NamedElement object) { return createNamedElementAdapter(); } @Override public Adapter caseConfigurationElement(ConfigurationElement object) { return createConfigurationElementAdapter(); } @Override public Adapter caseParameter(Parameter object) { return createParameterAdapter(); } @Override public Adapter caseParameterized(Parameterized object) { return createParameterizedAdapter(); } @Override public Adapter caseWindupModel(WindupModel object) { return createWindupModelAdapter(); } @Override public Adapter caseInput(Input object) { return createInputAdapter(); } @Override public Adapter caseWindupResult(WindupResult object) { return createWindupResultAdapter(); } @Override public Adapter caseIssue(Issue object) { return createIssueAdapter(); } @Override public Adapter caseHint(Hint object) { return createHintAdapter(); } @Override public Adapter caseClassification(Classification object) { return createClassificationAdapter(); } @Override public Adapter caseLink(Link object) { return createLinkAdapter(); } @Override public Adapter caseQuickFix(QuickFix object) { return createQuickFixAdapter(); } @Override public Adapter caseMigrationPath(MigrationPath object) { return createMigrationPathAdapter(); } @Override public Adapter caseTechnology(Technology object) { return createTechnologyAdapter(); } @Override public Adapter casePair(Pair object) { return createPairAdapter(); } @Override public Adapter caseCustomRuleProvider(CustomRuleProvider object) { return createCustomRuleProviderAdapter(); } @Override public Adapter caseMarkerElement(MarkerElement object) { return createMarkerElementAdapter(); } @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.jboss.tools.windup.windup.NamedElement <em>Named Element</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.jboss.tools.windup.windup.NamedElement * @generated */ public Adapter createNamedElementAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.jboss.tools.windup.windup.ConfigurationElement <em>Configuration Element</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.jboss.tools.windup.windup.ConfigurationElement * @generated */ public Adapter createConfigurationElementAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.jboss.tools.windup.windup.Parameter <em>Parameter</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.jboss.tools.windup.windup.Parameter * @generated */ public Adapter createParameterAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.jboss.tools.windup.windup.Parameterized <em>Parameterized</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.jboss.tools.windup.windup.Parameterized * @generated */ public Adapter createParameterizedAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.jboss.tools.windup.windup.WindupModel <em>Model</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.jboss.tools.windup.windup.WindupModel * @generated */ public Adapter createWindupModelAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.jboss.tools.windup.windup.Input <em>Input</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.jboss.tools.windup.windup.Input * @generated */ public Adapter createInputAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.jboss.tools.windup.windup.WindupResult <em>Result</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.jboss.tools.windup.windup.WindupResult * @generated */ public Adapter createWindupResultAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.jboss.tools.windup.windup.Issue <em>Issue</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.jboss.tools.windup.windup.Issue * @generated */ public Adapter createIssueAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.jboss.tools.windup.windup.Hint <em>Hint</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.jboss.tools.windup.windup.Hint * @generated */ public Adapter createHintAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.jboss.tools.windup.windup.Classification <em>Classification</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.jboss.tools.windup.windup.Classification * @generated */ public Adapter createClassificationAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.jboss.tools.windup.windup.Link <em>Link</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.jboss.tools.windup.windup.Link * @generated */ public Adapter createLinkAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.jboss.tools.windup.windup.QuickFix <em>Quick Fix</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.jboss.tools.windup.windup.QuickFix * @generated */ public Adapter createQuickFixAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.jboss.tools.windup.windup.MigrationPath <em>Migration Path</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.jboss.tools.windup.windup.MigrationPath * @generated */ public Adapter createMigrationPathAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.jboss.tools.windup.windup.Technology <em>Technology</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.jboss.tools.windup.windup.Technology * @generated */ public Adapter createTechnologyAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.jboss.tools.windup.windup.Pair <em>Pair</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.jboss.tools.windup.windup.Pair * @generated */ public Adapter createPairAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.jboss.tools.windup.windup.CustomRuleProvider <em>Custom Rule Provider</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.jboss.tools.windup.windup.CustomRuleProvider * @generated */ public Adapter createCustomRuleProviderAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.jboss.tools.windup.windup.MarkerElement <em>Marker Element</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.jboss.tools.windup.windup.MarkerElement * @generated */ public Adapter createMarkerElementAdapter() { 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; } } //WindupAdapterFactory