blob: 33598c727418dbc9928283a200a79216a660afcb [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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html\n\nContributors:
* Arnault Lapitre (CEA LIST) arnault.lapitre@cea.fr
* - Initial API and Implementation
*/
package org.eclipse.efm.ecore.formalml.datatype.util;
import org.eclipse.efm.ecore.formalml.common.AbstractElement;
import org.eclipse.efm.ecore.formalml.common.ClassifierDefinition;
import org.eclipse.efm.ecore.formalml.common.NamedElement;
import org.eclipse.efm.ecore.formalml.common.Type;
import org.eclipse.efm.ecore.formalml.datatype.*;
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;
/**
* <!-- 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.efm.ecore.formalml.datatype.DatatypePackage
* @generated
*/
public class DatatypeAdapterFactory extends AdapterFactoryImpl {
/**
* The cached model package.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected static DatatypePackage modelPackage;
/**
* Creates an instance of the adapter factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public DatatypeAdapterFactory() {
if (modelPackage == null) {
modelPackage = DatatypePackage.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 DatatypeSwitch<Adapter> modelSwitch =
new DatatypeSwitch<Adapter>() {
@Override
public Adapter caseDataType(DataType object) {
return createDataTypeAdapter();
}
@Override
public Adapter caseDataTypeReference(DataTypeReference object) {
return createDataTypeReferenceAdapter();
}
@Override
public Adapter caseEnumerationLiteral(EnumerationLiteral object) {
return createEnumerationLiteralAdapter();
}
@Override
public Adapter caseEnumerationType(EnumerationType object) {
return createEnumerationTypeAdapter();
}
@Override
public Adapter caseDataStructuredType(DataStructuredType object) {
return createDataStructuredTypeAdapter();
}
@Override
public Adapter caseStructureType(StructureType object) {
return createStructureTypeAdapter();
}
@Override
public Adapter caseUnionType(UnionType object) {
return createUnionTypeAdapter();
}
@Override
public Adapter caseChoiceType(ChoiceType object) {
return createChoiceTypeAdapter();
}
@Override
public Adapter caseDataSupportedType(DataSupportedType object) {
return createDataSupportedTypeAdapter();
}
@Override
public Adapter caseIntervalType(IntervalType object) {
return createIntervalTypeAdapter();
}
@Override
public Adapter caseCollectionType(CollectionType object) {
return createCollectionTypeAdapter();
}
@Override
public Adapter casePrimitiveType(PrimitiveType object) {
return createPrimitiveTypeAdapter();
}
@Override
public Adapter casePrimitiveBooleanType(PrimitiveBooleanType object) {
return createPrimitiveBooleanTypeAdapter();
}
@Override
public Adapter casePrimitiveNumberType(PrimitiveNumberType object) {
return createPrimitiveNumberTypeAdapter();
}
@Override
public Adapter casePrimitiveIntegerType(PrimitiveIntegerType object) {
return createPrimitiveIntegerTypeAdapter();
}
@Override
public Adapter casePrimitiveRationalType(PrimitiveRationalType object) {
return createPrimitiveRationalTypeAdapter();
}
@Override
public Adapter casePrimitiveFloatType(PrimitiveFloatType object) {
return createPrimitiveFloatTypeAdapter();
}
@Override
public Adapter casePrimitiveRealType(PrimitiveRealType object) {
return createPrimitiveRealTypeAdapter();
}
@Override
public Adapter casePrimitiveTimeType(PrimitiveTimeType object) {
return createPrimitiveTimeTypeAdapter();
}
@Override
public Adapter casePrimitiveCharacterType(PrimitiveCharacterType object) {
return createPrimitiveCharacterTypeAdapter();
}
@Override
public Adapter casePrimitiveStringType(PrimitiveStringType object) {
return createPrimitiveStringTypeAdapter();
}
@Override
public Adapter casePrimitiveInstanceType(PrimitiveInstanceType object) {
return createPrimitiveInstanceTypeAdapter();
}
@Override
public Adapter caseAbstractElement(AbstractElement object) {
return createAbstractElementAdapter();
}
@Override
public Adapter caseNamedElement(NamedElement object) {
return createNamedElementAdapter();
}
@Override
public Adapter caseType(Type object) {
return createTypeAdapter();
}
@Override
public Adapter caseClassifierDefinition(ClassifierDefinition object) {
return createClassifierDefinitionAdapter();
}
@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.efm.ecore.formalml.datatype.DataType <em>Data Type</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.efm.ecore.formalml.datatype.DataType
* @generated
*/
public Adapter createDataTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.DataTypeReference <em>Data Type Reference</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.efm.ecore.formalml.datatype.DataTypeReference
* @generated
*/
public Adapter createDataTypeReferenceAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.EnumerationLiteral <em>Enumeration Literal</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.efm.ecore.formalml.datatype.EnumerationLiteral
* @generated
*/
public Adapter createEnumerationLiteralAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.EnumerationType <em>Enumeration Type</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.efm.ecore.formalml.datatype.EnumerationType
* @generated
*/
public Adapter createEnumerationTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.DataStructuredType <em>Data Structured Type</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.efm.ecore.formalml.datatype.DataStructuredType
* @generated
*/
public Adapter createDataStructuredTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.StructureType <em>Structure Type</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.efm.ecore.formalml.datatype.StructureType
* @generated
*/
public Adapter createStructureTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.UnionType <em>Union Type</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.efm.ecore.formalml.datatype.UnionType
* @generated
*/
public Adapter createUnionTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.ChoiceType <em>Choice Type</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.efm.ecore.formalml.datatype.ChoiceType
* @generated
*/
public Adapter createChoiceTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.DataSupportedType <em>Data Supported Type</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.efm.ecore.formalml.datatype.DataSupportedType
* @generated
*/
public Adapter createDataSupportedTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.IntervalType <em>Interval Type</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.efm.ecore.formalml.datatype.IntervalType
* @generated
*/
public Adapter createIntervalTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.CollectionType <em>Collection Type</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.efm.ecore.formalml.datatype.CollectionType
* @generated
*/
public Adapter createCollectionTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.PrimitiveType <em>Primitive Type</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.efm.ecore.formalml.datatype.PrimitiveType
* @generated
*/
public Adapter createPrimitiveTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.PrimitiveBooleanType <em>Primitive Boolean Type</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.efm.ecore.formalml.datatype.PrimitiveBooleanType
* @generated
*/
public Adapter createPrimitiveBooleanTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.PrimitiveNumberType <em>Primitive Number Type</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.efm.ecore.formalml.datatype.PrimitiveNumberType
* @generated
*/
public Adapter createPrimitiveNumberTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.PrimitiveIntegerType <em>Primitive Integer Type</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.efm.ecore.formalml.datatype.PrimitiveIntegerType
* @generated
*/
public Adapter createPrimitiveIntegerTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.PrimitiveRationalType <em>Primitive Rational Type</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.efm.ecore.formalml.datatype.PrimitiveRationalType
* @generated
*/
public Adapter createPrimitiveRationalTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.PrimitiveFloatType <em>Primitive Float Type</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.efm.ecore.formalml.datatype.PrimitiveFloatType
* @generated
*/
public Adapter createPrimitiveFloatTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.PrimitiveRealType <em>Primitive Real Type</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.efm.ecore.formalml.datatype.PrimitiveRealType
* @generated
*/
public Adapter createPrimitiveRealTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.PrimitiveTimeType <em>Primitive Time Type</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.efm.ecore.formalml.datatype.PrimitiveTimeType
* @generated
*/
public Adapter createPrimitiveTimeTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.PrimitiveCharacterType <em>Primitive Character Type</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.efm.ecore.formalml.datatype.PrimitiveCharacterType
* @generated
*/
public Adapter createPrimitiveCharacterTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.PrimitiveStringType <em>Primitive String Type</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.efm.ecore.formalml.datatype.PrimitiveStringType
* @generated
*/
public Adapter createPrimitiveStringTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.datatype.PrimitiveInstanceType <em>Primitive Instance Type</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.efm.ecore.formalml.datatype.PrimitiveInstanceType
* @generated
*/
public Adapter createPrimitiveInstanceTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.common.AbstractElement <em>Abstract 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.eclipse.efm.ecore.formalml.common.AbstractElement
* @generated
*/
public Adapter createAbstractElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.common.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.eclipse.efm.ecore.formalml.common.NamedElement
* @generated
*/
public Adapter createNamedElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.common.Type <em>Type</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.efm.ecore.formalml.common.Type
* @generated
*/
public Adapter createTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.efm.ecore.formalml.common.ClassifierDefinition <em>Classifier Definition</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.efm.ecore.formalml.common.ClassifierDefinition
* @generated
*/
public Adapter createClassifierDefinitionAdapter() {
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;
}
} //DatatypeAdapterFactory