blob: 5cebb36efac786b7cd77b8bb68fced2cf51996c0 [file] [log] [blame]
/**
* Copyright (c) 2020 CEA LIST
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
*/
package org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.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.papyrus.aiml.profile.AIML.Module.Model;
import org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.*;
/**
* <!-- 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.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layersPackage
* @generated
*/
public class Pooling_layersAdapterFactory extends AdapterFactoryImpl {
/**
* The cached model package.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected static Pooling_layersPackage modelPackage;
/**
* Creates an instance of the adapter factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Pooling_layersAdapterFactory() {
if (modelPackage == null) {
modelPackage = Pooling_layersPackage.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 Pooling_layersSwitch<Adapter> modelSwitch =
new Pooling_layersSwitch<Adapter>() {
@Override
public Adapter casePooling_layers(Pooling_layers object) {
return createPooling_layersAdapter();
}
@Override
public Adapter casePooling_layers_1(Pooling_layers_1 object) {
return createPooling_layers_1Adapter();
}
@Override
public Adapter casePooling_layers_2(Pooling_layers_2 object) {
return createPooling_layers_2Adapter();
}
@Override
public Adapter caseAdaptativeMaxPool(AdaptativeMaxPool object) {
return createAdaptativeMaxPoolAdapter();
}
@Override
public Adapter caseAdaptativeMaxPool1d(AdaptativeMaxPool1d object) {
return createAdaptativeMaxPool1dAdapter();
}
@Override
public Adapter caseAdaptativeMaxPool2d(AdaptativeMaxPool2d object) {
return createAdaptativeMaxPool2dAdapter();
}
@Override
public Adapter caseAdaptativeMaxPool3d(AdaptativeMaxPool3d object) {
return createAdaptativeMaxPool3dAdapter();
}
@Override
public Adapter caseAdaptiveAvgPool3d(AdaptiveAvgPool3d object) {
return createAdaptiveAvgPool3dAdapter();
}
@Override
public Adapter caseAdaptiveAvgPool2d(AdaptiveAvgPool2d object) {
return createAdaptiveAvgPool2dAdapter();
}
@Override
public Adapter caseAdaptiveAvgPool1d(AdaptiveAvgPool1d object) {
return createAdaptiveAvgPool1dAdapter();
}
@Override
public Adapter casePooling_layers_1_1(Pooling_layers_1_1 object) {
return createPooling_layers_1_1Adapter();
}
@Override
public Adapter caseMaxPool1d(MaxPool1d object) {
return createMaxPool1dAdapter();
}
@Override
public Adapter caseMaxPool(MaxPool object) {
return createMaxPoolAdapter();
}
@Override
public Adapter casePooling_layers_1_1_1_1(Pooling_layers_1_1_1_1 object) {
return createPooling_layers_1_1_1_1Adapter();
}
@Override
public Adapter casePooling_layers_1_1_1(Pooling_layers_1_1_1 object) {
return createPooling_layers_1_1_1Adapter();
}
@Override
public Adapter caseMaxUnpool1d(MaxUnpool1d object) {
return createMaxUnpool1dAdapter();
}
@Override
public Adapter caseAvgPool1d(AvgPool1d object) {
return createAvgPool1dAdapter();
}
@Override
public Adapter casePooling_layers_1_1_2_1(Pooling_layers_1_1_2_1 object) {
return createPooling_layers_1_1_2_1Adapter();
}
@Override
public Adapter caseMaxUnpool2d(MaxUnpool2d object) {
return createMaxUnpool2dAdapter();
}
@Override
public Adapter caseMaxUnpool3d(MaxUnpool3d object) {
return createMaxUnpool3dAdapter();
}
@Override
public Adapter casePooling_layers_1_1_2(Pooling_layers_1_1_2 object) {
return createPooling_layers_1_1_2Adapter();
}
@Override
public Adapter caseLPPool1d(LPPool1d object) {
return createLPPool1dAdapter();
}
@Override
public Adapter caseLPPool2d(LPPool2d object) {
return createLPPool2dAdapter();
}
@Override
public Adapter caseAvgPool2d3d(AvgPool2d3d object) {
return createAvgPool2d3dAdapter();
}
@Override
public Adapter caseAvgPool2d(AvgPool2d object) {
return createAvgPool2dAdapter();
}
@Override
public Adapter caseAvgPool3d(AvgPool3d object) {
return createAvgPool3dAdapter();
}
@Override
public Adapter caseMaxPool2d(MaxPool2d object) {
return createMaxPool2dAdapter();
}
@Override
public Adapter caseMaxPool3d(MaxPool3d object) {
return createMaxPool3dAdapter();
}
@Override
public Adapter caseFractionalMaxPool2d(FractionalMaxPool2d object) {
return createFractionalMaxPool2dAdapter();
}
@Override
public Adapter caseModel(Model object) {
return createModelAdapter();
}
@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.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layers <em>Pooling layers</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.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layers
* @generated
*/
public Adapter createPooling_layersAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layers_1 <em>Pooling layers 1</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.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layers_1
* @generated
*/
public Adapter createPooling_layers_1Adapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layers_2 <em>Pooling layers 2</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.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layers_2
* @generated
*/
public Adapter createPooling_layers_2Adapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.AdaptativeMaxPool <em>Adaptative Max Pool</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.papyrus.aiml.profile.AIML.Pooling_layers.AdaptativeMaxPool
* @generated
*/
public Adapter createAdaptativeMaxPoolAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.AdaptativeMaxPool1d <em>Adaptative Max Pool1d</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.papyrus.aiml.profile.AIML.Pooling_layers.AdaptativeMaxPool1d
* @generated
*/
public Adapter createAdaptativeMaxPool1dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.AdaptativeMaxPool2d <em>Adaptative Max Pool2d</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.papyrus.aiml.profile.AIML.Pooling_layers.AdaptativeMaxPool2d
* @generated
*/
public Adapter createAdaptativeMaxPool2dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.AdaptativeMaxPool3d <em>Adaptative Max Pool3d</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.papyrus.aiml.profile.AIML.Pooling_layers.AdaptativeMaxPool3d
* @generated
*/
public Adapter createAdaptativeMaxPool3dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.AdaptiveAvgPool3d <em>Adaptive Avg Pool3d</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.papyrus.aiml.profile.AIML.Pooling_layers.AdaptiveAvgPool3d
* @generated
*/
public Adapter createAdaptiveAvgPool3dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.AdaptiveAvgPool2d <em>Adaptive Avg Pool2d</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.papyrus.aiml.profile.AIML.Pooling_layers.AdaptiveAvgPool2d
* @generated
*/
public Adapter createAdaptiveAvgPool2dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.AdaptiveAvgPool1d <em>Adaptive Avg Pool1d</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.papyrus.aiml.profile.AIML.Pooling_layers.AdaptiveAvgPool1d
* @generated
*/
public Adapter createAdaptiveAvgPool1dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layers_1_1 <em>Pooling layers 11</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.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layers_1_1
* @generated
*/
public Adapter createPooling_layers_1_1Adapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.MaxPool1d <em>Max Pool1d</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.papyrus.aiml.profile.AIML.Pooling_layers.MaxPool1d
* @generated
*/
public Adapter createMaxPool1dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.MaxPool <em>Max Pool</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.papyrus.aiml.profile.AIML.Pooling_layers.MaxPool
* @generated
*/
public Adapter createMaxPoolAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layers_1_1_1_1 <em>Pooling layers 1111</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.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layers_1_1_1_1
* @generated
*/
public Adapter createPooling_layers_1_1_1_1Adapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layers_1_1_1 <em>Pooling layers 111</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.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layers_1_1_1
* @generated
*/
public Adapter createPooling_layers_1_1_1Adapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.MaxUnpool1d <em>Max Unpool1d</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.papyrus.aiml.profile.AIML.Pooling_layers.MaxUnpool1d
* @generated
*/
public Adapter createMaxUnpool1dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.AvgPool1d <em>Avg Pool1d</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.papyrus.aiml.profile.AIML.Pooling_layers.AvgPool1d
* @generated
*/
public Adapter createAvgPool1dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layers_1_1_2_1 <em>Pooling layers 1121</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.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layers_1_1_2_1
* @generated
*/
public Adapter createPooling_layers_1_1_2_1Adapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.MaxUnpool2d <em>Max Unpool2d</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.papyrus.aiml.profile.AIML.Pooling_layers.MaxUnpool2d
* @generated
*/
public Adapter createMaxUnpool2dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.MaxUnpool3d <em>Max Unpool3d</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.papyrus.aiml.profile.AIML.Pooling_layers.MaxUnpool3d
* @generated
*/
public Adapter createMaxUnpool3dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layers_1_1_2 <em>Pooling layers 112</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.papyrus.aiml.profile.AIML.Pooling_layers.Pooling_layers_1_1_2
* @generated
*/
public Adapter createPooling_layers_1_1_2Adapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.LPPool1d <em>LP Pool1d</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.papyrus.aiml.profile.AIML.Pooling_layers.LPPool1d
* @generated
*/
public Adapter createLPPool1dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.LPPool2d <em>LP Pool2d</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.papyrus.aiml.profile.AIML.Pooling_layers.LPPool2d
* @generated
*/
public Adapter createLPPool2dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.AvgPool2d3d <em>Avg Pool2d3d</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.papyrus.aiml.profile.AIML.Pooling_layers.AvgPool2d3d
* @generated
*/
public Adapter createAvgPool2d3dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.AvgPool2d <em>Avg Pool2d</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.papyrus.aiml.profile.AIML.Pooling_layers.AvgPool2d
* @generated
*/
public Adapter createAvgPool2dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.AvgPool3d <em>Avg Pool3d</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.papyrus.aiml.profile.AIML.Pooling_layers.AvgPool3d
* @generated
*/
public Adapter createAvgPool3dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.MaxPool2d <em>Max Pool2d</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.papyrus.aiml.profile.AIML.Pooling_layers.MaxPool2d
* @generated
*/
public Adapter createMaxPool2dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.MaxPool3d <em>Max Pool3d</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.papyrus.aiml.profile.AIML.Pooling_layers.MaxPool3d
* @generated
*/
public Adapter createMaxPool3dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Pooling_layers.FractionalMaxPool2d <em>Fractional Max Pool2d</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.papyrus.aiml.profile.AIML.Pooling_layers.FractionalMaxPool2d
* @generated
*/
public Adapter createFractionalMaxPool2dAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Module.Model <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.eclipse.papyrus.aiml.profile.AIML.Module.Model
* @generated
*/
public Adapter createModelAdapter() {
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;
}
} //Pooling_layersAdapterFactory