blob: 14867e772c675fea243afb01b95bb7c3e2c099ff [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.Loss_functions.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.Loss_functions.*;
import org.eclipse.papyrus.aiml.profile.AIML.Module.Model;
/**
* <!-- 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.Loss_functions.Loss_functionsPackage
* @generated
*/
public class Loss_functionsAdapterFactory extends AdapterFactoryImpl {
/**
* The cached model package.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected static Loss_functionsPackage modelPackage;
/**
* Creates an instance of the adapter factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Loss_functionsAdapterFactory() {
if (modelPackage == null) {
modelPackage = Loss_functionsPackage.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 Loss_functionsSwitch<Adapter> modelSwitch =
new Loss_functionsSwitch<Adapter>() {
@Override
public Adapter caseLoss_functions(Loss_functions object) {
return createLoss_functionsAdapter();
}
@Override
public Adapter caseLoss_functions_1(Loss_functions_1 object) {
return createLoss_functions_1Adapter();
}
@Override
public Adapter caseL1Loss(L1Loss object) {
return createL1LossAdapter();
}
@Override
public Adapter caseMSELoss(MSELoss object) {
return createMSELossAdapter();
}
@Override
public Adapter caseCTCLoss(CTCLoss object) {
return createCTCLossAdapter();
}
@Override
public Adapter caseKLDivLoss(KLDivLoss object) {
return createKLDivLossAdapter();
}
@Override
public Adapter caseMultiLabelMarginLoss(MultiLabelMarginLoss object) {
return createMultiLabelMarginLossAdapter();
}
@Override
public Adapter caseLoss_functions_1_1(Loss_functions_1_1 object) {
return createLoss_functions_1_1Adapter();
}
@Override
public Adapter caseLoss_functions_1_2(Loss_functions_1_2 object) {
return createLoss_functions_1_2Adapter();
}
@Override
public Adapter caseCosineEmbeddingLoss(CosineEmbeddingLoss object) {
return createCosineEmbeddingLossAdapter();
}
@Override
public Adapter caseMarginRankingLoss(MarginRankingLoss object) {
return createMarginRankingLossAdapter();
}
@Override
public Adapter caseHingeEmbeddingLoss(HingeEmbeddingLoss object) {
return createHingeEmbeddingLossAdapter();
}
@Override
public Adapter caseBCELoss(BCELoss object) {
return createBCELossAdapter();
}
@Override
public Adapter caseLoss_functions_1_1_1(Loss_functions_1_1_1 object) {
return createLoss_functions_1_1_1Adapter();
}
@Override
public Adapter caseMultiMarginLoss(MultiMarginLoss object) {
return createMultiMarginLossAdapter();
}
@Override
public Adapter caseTripletMarginLoss(TripletMarginLoss object) {
return createTripletMarginLossAdapter();
}
@Override
public Adapter caseLoss_functions_1_2_1(Loss_functions_1_2_1 object) {
return createLoss_functions_1_2_1Adapter();
}
@Override
public Adapter caseCrossEntropyLoss(CrossEntropyLoss object) {
return createCrossEntropyLossAdapter();
}
@Override
public Adapter caseNLLLoss(NLLLoss object) {
return createNLLLossAdapter();
}
@Override
public Adapter casePoissonNLLLoss(PoissonNLLLoss object) {
return createPoissonNLLLossAdapter();
}
@Override
public Adapter caseBCEWithLogitsLoss(BCEWithLogitsLoss object) {
return createBCEWithLogitsLossAdapter();
}
@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.Loss_functions.Loss_functions <em>Loss functions</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.Loss_functions.Loss_functions
* @generated
*/
public Adapter createLoss_functionsAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.Loss_functions_1 <em>Loss functions 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.Loss_functions.Loss_functions_1
* @generated
*/
public Adapter createLoss_functions_1Adapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.L1Loss <em>L1 Loss</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.Loss_functions.L1Loss
* @generated
*/
public Adapter createL1LossAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.MSELoss <em>MSE Loss</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.Loss_functions.MSELoss
* @generated
*/
public Adapter createMSELossAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.CTCLoss <em>CTC Loss</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.Loss_functions.CTCLoss
* @generated
*/
public Adapter createCTCLossAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.KLDivLoss <em>KL Div Loss</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.Loss_functions.KLDivLoss
* @generated
*/
public Adapter createKLDivLossAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.MultiLabelMarginLoss <em>Multi Label Margin Loss</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.Loss_functions.MultiLabelMarginLoss
* @generated
*/
public Adapter createMultiLabelMarginLossAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.Loss_functions_1_1 <em>Loss functions 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.Loss_functions.Loss_functions_1_1
* @generated
*/
public Adapter createLoss_functions_1_1Adapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.Loss_functions_1_2 <em>Loss functions 12</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.Loss_functions.Loss_functions_1_2
* @generated
*/
public Adapter createLoss_functions_1_2Adapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.CosineEmbeddingLoss <em>Cosine Embedding Loss</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.Loss_functions.CosineEmbeddingLoss
* @generated
*/
public Adapter createCosineEmbeddingLossAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.MarginRankingLoss <em>Margin Ranking Loss</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.Loss_functions.MarginRankingLoss
* @generated
*/
public Adapter createMarginRankingLossAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.HingeEmbeddingLoss <em>Hinge Embedding Loss</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.Loss_functions.HingeEmbeddingLoss
* @generated
*/
public Adapter createHingeEmbeddingLossAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.BCELoss <em>BCE Loss</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.Loss_functions.BCELoss
* @generated
*/
public Adapter createBCELossAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.Loss_functions_1_1_1 <em>Loss functions 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.Loss_functions.Loss_functions_1_1_1
* @generated
*/
public Adapter createLoss_functions_1_1_1Adapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.MultiMarginLoss <em>Multi Margin Loss</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.Loss_functions.MultiMarginLoss
* @generated
*/
public Adapter createMultiMarginLossAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.TripletMarginLoss <em>Triplet Margin Loss</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.Loss_functions.TripletMarginLoss
* @generated
*/
public Adapter createTripletMarginLossAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.Loss_functions_1_2_1 <em>Loss functions 121</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.Loss_functions.Loss_functions_1_2_1
* @generated
*/
public Adapter createLoss_functions_1_2_1Adapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.CrossEntropyLoss <em>Cross Entropy Loss</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.Loss_functions.CrossEntropyLoss
* @generated
*/
public Adapter createCrossEntropyLossAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.NLLLoss <em>NLL Loss</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.Loss_functions.NLLLoss
* @generated
*/
public Adapter createNLLLossAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.PoissonNLLLoss <em>Poisson NLL Loss</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.Loss_functions.PoissonNLLLoss
* @generated
*/
public Adapter createPoissonNLLLossAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.BCEWithLogitsLoss <em>BCE With Logits Loss</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.Loss_functions.BCEWithLogitsLoss
* @generated
*/
public Adapter createBCEWithLogitsLossAdapter() {
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;
}
} //Loss_functionsAdapterFactory