blob: 07a957b1aecf7bf515d0b0d3c52f8972bb601fb6 [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* 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
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - Initial implementation
*
*/
package org.eclipse.osbp.xtext.entitymock.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.osbp.dsl.semantic.common.types.LAnnotationTarget;
import org.eclipse.osbp.dsl.semantic.common.types.LEnum;
import org.eclipse.osbp.dsl.semantic.common.types.LEnumLiteral;
import org.eclipse.osbp.dsl.semantic.common.types.LLazyResolver;
import org.eclipse.osbp.dsl.semantic.common.types.LPackage;
import org.eclipse.osbp.dsl.semantic.common.types.LScalarType;
import org.eclipse.osbp.dsl.semantic.common.types.LType;
import org.eclipse.osbp.xtext.entitymock.*;
/**
* <!-- 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.osbp.xtext.entitymock.EntityMockDSLPackage
* @generated
*/
public class EntityMockDSLAdapterFactory extends AdapterFactoryImpl {
/**
* The cached model package.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected static EntityMockDSLPackage modelPackage;
/**
* Creates an instance of the adapter factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EntityMockDSLAdapterFactory() {
if (modelPackage == null) {
modelPackage = EntityMockDSLPackage.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 EntityMockDSLSwitch<Adapter> modelSwitch =
new EntityMockDSLSwitch<Adapter>() {
@Override
public Adapter caseEntityMockModel(EntityMockModel object) {
return createEntityMockModelAdapter();
}
@Override
public Adapter caseEntityMockLazyResolver(EntityMockLazyResolver object) {
return createEntityMockLazyResolverAdapter();
}
@Override
public Adapter caseEntityMockPackage(EntityMockPackage object) {
return createEntityMockPackageAdapter();
}
@Override
public Adapter caseEntityMock(EntityMock object) {
return createEntityMockAdapter();
}
@Override
public Adapter caseRunningDataInterchanges(RunningDataInterchanges object) {
return createRunningDataInterchangesAdapter();
}
@Override
public Adapter caseRunningDataInterchange(RunningDataInterchange object) {
return createRunningDataInterchangeAdapter();
}
@Override
public Adapter caseEntityMockResources(EntityMockResources object) {
return createEntityMockResourcesAdapter();
}
@Override
public Adapter caseEntityMockResource(EntityMockResource object) {
return createEntityMockResourceAdapter();
}
@Override
public Adapter caseEntityMockResourceAttribute(EntityMockResourceAttribute object) {
return createEntityMockResourceAttributeAdapter();
}
@Override
public Adapter caseEntityMockResourceDataRow(EntityMockResourceDataRow object) {
return createEntityMockResourceDataRowAdapter();
}
@Override
public Adapter caseEntityMockObjects(EntityMockObjects object) {
return createEntityMockObjectsAdapter();
}
@Override
public Adapter caseEntityMockObject(EntityMockObject object) {
return createEntityMockObjectAdapter();
}
@Override
public Adapter caseEntityMockObjectEnum(EntityMockObjectEnum object) {
return createEntityMockObjectEnumAdapter();
}
@Override
public Adapter caseIEntityMockObjectAttribute(IEntityMockObjectAttribute object) {
return createIEntityMockObjectAttributeAdapter();
}
@Override
public Adapter caseEntityMockObjectPlainValue(EntityMockObjectPlainValue object) {
return createEntityMockObjectPlainValueAdapter();
}
@Override
public Adapter caseEntityMockObjectResourceValue(EntityMockObjectResourceValue object) {
return createEntityMockObjectResourceValueAdapter();
}
@Override
public Adapter caseEntityMockObjectArrayValue(EntityMockObjectArrayValue object) {
return createEntityMockObjectArrayValueAdapter();
}
@Override
public Adapter caseEntityMockObjectItemValue(EntityMockObjectItemValue object) {
return createEntityMockObjectItemValueAdapter();
}
@Override
public Adapter caseEntityMockObjectEmbed(EntityMockObjectEmbed object) {
return createEntityMockObjectEmbedAdapter();
}
@Override
public Adapter caseEntityMockObjectFunction(EntityMockObjectFunction object) {
return createEntityMockObjectFunctionAdapter();
}
@Override
public Adapter caseEntityMockObjectFunctionParameter(EntityMockObjectFunctionParameter object) {
return createEntityMockObjectFunctionParameterAdapter();
}
@Override
public Adapter caseEntityMockObjectFill(EntityMockObjectFill object) {
return createEntityMockObjectFillAdapter();
}
@Override
public Adapter casePropertyFillerType(PropertyFillerType object) {
return createPropertyFillerTypeAdapter();
}
@Override
public Adapter casePropertyFillerDateType(PropertyFillerDateType object) {
return createPropertyFillerDateTypeAdapter();
}
@Override
public Adapter casePropertyFillerBoolean(PropertyFillerBoolean object) {
return createPropertyFillerBooleanAdapter();
}
@Override
public Adapter casePropertyFillerDoubleType(PropertyFillerDoubleType object) {
return createPropertyFillerDoubleTypeAdapter();
}
@Override
public Adapter casePropertyFillerIntegerType(PropertyFillerIntegerType object) {
return createPropertyFillerIntegerTypeAdapter();
}
@Override
public Adapter casePropertyFillerTextType(PropertyFillerTextType object) {
return createPropertyFillerTextTypeAdapter();
}
@Override
public Adapter casePropertyFillerDateFuture(PropertyFillerDateFuture object) {
return createPropertyFillerDateFutureAdapter();
}
@Override
public Adapter casePropertyFillerDatePast(PropertyFillerDatePast object) {
return createPropertyFillerDatePastAdapter();
}
@Override
public Adapter casePropertyFillerDateRange(PropertyFillerDateRange object) {
return createPropertyFillerDateRangeAdapter();
}
@Override
public Adapter casePropertyFillerSignedDoubleRange(PropertyFillerSignedDoubleRange object) {
return createPropertyFillerSignedDoubleRangeAdapter();
}
@Override
public Adapter casePropertyFillerSignedDoubleRandom(PropertyFillerSignedDoubleRandom object) {
return createPropertyFillerSignedDoubleRandomAdapter();
}
@Override
public Adapter casePropertyFillerSignedIntegerRange(PropertyFillerSignedIntegerRange object) {
return createPropertyFillerSignedIntegerRangeAdapter();
}
@Override
public Adapter casePropertyFillerSignedIntegerRandom(PropertyFillerSignedIntegerRandom object) {
return createPropertyFillerSignedIntegerRandomAdapter();
}
@Override
public Adapter casePropertyFillerTextRandom(PropertyFillerTextRandom object) {
return createPropertyFillerTextRandomAdapter();
}
@Override
public Adapter casePropertyFillerTextParagraphs(PropertyFillerTextParagraphs object) {
return createPropertyFillerTextParagraphsAdapter();
}
@Override
public Adapter casePropertyFillerTextSentences(PropertyFillerTextSentences object) {
return createPropertyFillerTextSentencesAdapter();
}
@Override
public Adapter casePropertyFillerTextWords(PropertyFillerTextWords object) {
return createPropertyFillerTextWordsAdapter();
}
@Override
public Adapter casePropertyFillerUnsignedDoubleRange(PropertyFillerUnsignedDoubleRange object) {
return createPropertyFillerUnsignedDoubleRangeAdapter();
}
@Override
public Adapter casePropertyFillerUnsignedDoubleRandom(PropertyFillerUnsignedDoubleRandom object) {
return createPropertyFillerUnsignedDoubleRandomAdapter();
}
@Override
public Adapter casePropertyFillerUnsignedIntegerRange(PropertyFillerUnsignedIntegerRange object) {
return createPropertyFillerUnsignedIntegerRangeAdapter();
}
@Override
public Adapter casePropertyFillerUnsignedIntegerRandom(PropertyFillerUnsignedIntegerRandom object) {
return createPropertyFillerUnsignedIntegerRandomAdapter();
}
@Override
public Adapter caseEntityMockEntities(EntityMockEntities object) {
return createEntityMockEntitiesAdapter();
}
@Override
public Adapter caseEntityMockEntity(EntityMockEntity object) {
return createEntityMockEntityAdapter();
}
@Override
public Adapter caseIIterate(IIterate object) {
return createIIterateAdapter();
}
@Override
public Adapter caseIntegerIterate(IntegerIterate object) {
return createIntegerIterateAdapter();
}
@Override
public Adapter caseDateIterate(DateIterate object) {
return createDateIterateAdapter();
}
@Override
public Adapter caseDate(Date object) {
return createDateAdapter();
}
@Override
public Adapter caseEntityMockByResourceAttribute(EntityMockByResourceAttribute object) {
return createEntityMockByResourceAttributeAdapter();
}
@Override
public Adapter caseEntityMockTemplate(EntityMockTemplate object) {
return createEntityMockTemplateAdapter();
}
@Override
public Adapter caseIEntityMockObjectUsable(IEntityMockObjectUsable object) {
return createIEntityMockObjectUsableAdapter();
}
@Override
public Adapter caseIEntityMockEntityUsable(IEntityMockEntityUsable object) {
return createIEntityMockEntityUsableAdapter();
}
@Override
public Adapter caseIEntityMockAttribute(IEntityMockAttribute object) {
return createIEntityMockAttributeAdapter();
}
@Override
public Adapter caseEntityMockReferencedObjectAttribute(EntityMockReferencedObjectAttribute object) {
return createEntityMockReferencedObjectAttributeAdapter();
}
@Override
public Adapter caseEntityMockAttributeByObject(EntityMockAttributeByObject object) {
return createEntityMockAttributeByObjectAdapter();
}
@Override
public Adapter caseEntityMockAttributeFiller(EntityMockAttributeFiller object) {
return createEntityMockAttributeFillerAdapter();
}
@Override
public Adapter caseEntityMockAttributeByReference(EntityMockAttributeByReference object) {
return createEntityMockAttributeByReferenceAdapter();
}
@Override
public Adapter caseEntityMockEntityFunction(EntityMockEntityFunction object) {
return createEntityMockEntityFunctionAdapter();
}
@Override
public Adapter caseEntityMockEntityNestedAttribute(EntityMockEntityNestedAttribute object) {
return createEntityMockEntityNestedAttributeAdapter();
}
@Override
public Adapter caseEntityMockEntityFunctionParameter(EntityMockEntityFunctionParameter object) {
return createEntityMockEntityFunctionParameterAdapter();
}
@Override
public Adapter caseLLazyResolver(LLazyResolver object) {
return createLLazyResolverAdapter();
}
@Override
public Adapter caseLPackage(LPackage object) {
return createLPackageAdapter();
}
@Override
public Adapter caseLAnnotationTarget(LAnnotationTarget object) {
return createLAnnotationTargetAdapter();
}
@Override
public Adapter caseLType(LType object) {
return createLTypeAdapter();
}
@Override
public Adapter caseLScalarType(LScalarType object) {
return createLScalarTypeAdapter();
}
@Override
public Adapter caseLEnum(LEnum object) {
return createLEnumAdapter();
}
@Override
public Adapter caseLEnumLiteral(LEnumLiteral object) {
return createLEnumLiteralAdapter();
}
@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.osbp.xtext.entitymock.EntityMockModel <em>Entity Mock 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.osbp.xtext.entitymock.EntityMockModel
* @generated
*/
public Adapter createEntityMockModelAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockLazyResolver <em>Entity Mock Lazy Resolver</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.osbp.xtext.entitymock.EntityMockLazyResolver
* @generated
*/
public Adapter createEntityMockLazyResolverAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockPackage <em>Entity Mock Package</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.osbp.xtext.entitymock.EntityMockPackage
* @generated
*/
public Adapter createEntityMockPackageAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMock <em>Entity Mock</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.osbp.xtext.entitymock.EntityMock
* @generated
*/
public Adapter createEntityMockAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.RunningDataInterchanges <em>Running Data Interchanges</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.osbp.xtext.entitymock.RunningDataInterchanges
* @generated
*/
public Adapter createRunningDataInterchangesAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.RunningDataInterchange <em>Running Data Interchange</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.osbp.xtext.entitymock.RunningDataInterchange
* @generated
*/
public Adapter createRunningDataInterchangeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockResources <em>Entity Mock Resources</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.osbp.xtext.entitymock.EntityMockResources
* @generated
*/
public Adapter createEntityMockResourcesAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockResource <em>Entity Mock Resource</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.osbp.xtext.entitymock.EntityMockResource
* @generated
*/
public Adapter createEntityMockResourceAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockResourceAttribute <em>Entity Mock Resource Attribute</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.osbp.xtext.entitymock.EntityMockResourceAttribute
* @generated
*/
public Adapter createEntityMockResourceAttributeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockResourceDataRow <em>Entity Mock Resource Data Row</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.osbp.xtext.entitymock.EntityMockResourceDataRow
* @generated
*/
public Adapter createEntityMockResourceDataRowAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockObjects <em>Entity Mock Objects</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.osbp.xtext.entitymock.EntityMockObjects
* @generated
*/
public Adapter createEntityMockObjectsAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockObject <em>Entity Mock Object</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.osbp.xtext.entitymock.EntityMockObject
* @generated
*/
public Adapter createEntityMockObjectAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockObjectEnum <em>Entity Mock Object Enum</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.osbp.xtext.entitymock.EntityMockObjectEnum
* @generated
*/
public Adapter createEntityMockObjectEnumAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.IEntityMockObjectAttribute <em>IEntity Mock Object Attribute</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.osbp.xtext.entitymock.IEntityMockObjectAttribute
* @generated
*/
public Adapter createIEntityMockObjectAttributeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockObjectPlainValue <em>Entity Mock Object Plain Value</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.osbp.xtext.entitymock.EntityMockObjectPlainValue
* @generated
*/
public Adapter createEntityMockObjectPlainValueAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockObjectResourceValue <em>Entity Mock Object Resource Value</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.osbp.xtext.entitymock.EntityMockObjectResourceValue
* @generated
*/
public Adapter createEntityMockObjectResourceValueAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockObjectArrayValue <em>Entity Mock Object Array Value</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.osbp.xtext.entitymock.EntityMockObjectArrayValue
* @generated
*/
public Adapter createEntityMockObjectArrayValueAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockObjectItemValue <em>Entity Mock Object Item Value</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.osbp.xtext.entitymock.EntityMockObjectItemValue
* @generated
*/
public Adapter createEntityMockObjectItemValueAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockObjectEmbed <em>Entity Mock Object Embed</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.osbp.xtext.entitymock.EntityMockObjectEmbed
* @generated
*/
public Adapter createEntityMockObjectEmbedAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockObjectFunction <em>Entity Mock Object Function</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.osbp.xtext.entitymock.EntityMockObjectFunction
* @generated
*/
public Adapter createEntityMockObjectFunctionAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockObjectFunctionParameter <em>Entity Mock Object Function 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.eclipse.osbp.xtext.entitymock.EntityMockObjectFunctionParameter
* @generated
*/
public Adapter createEntityMockObjectFunctionParameterAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockObjectFill <em>Entity Mock Object Fill</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.osbp.xtext.entitymock.EntityMockObjectFill
* @generated
*/
public Adapter createEntityMockObjectFillAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerType <em>Property Filler 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.osbp.xtext.entitymock.PropertyFillerType
* @generated
*/
public Adapter createPropertyFillerTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerDateType <em>Property Filler Date 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.osbp.xtext.entitymock.PropertyFillerDateType
* @generated
*/
public Adapter createPropertyFillerDateTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerBoolean <em>Property Filler Boolean</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.osbp.xtext.entitymock.PropertyFillerBoolean
* @generated
*/
public Adapter createPropertyFillerBooleanAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerDoubleType <em>Property Filler Double 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.osbp.xtext.entitymock.PropertyFillerDoubleType
* @generated
*/
public Adapter createPropertyFillerDoubleTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerIntegerType <em>Property Filler 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.osbp.xtext.entitymock.PropertyFillerIntegerType
* @generated
*/
public Adapter createPropertyFillerIntegerTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerTextType <em>Property Filler Text 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.osbp.xtext.entitymock.PropertyFillerTextType
* @generated
*/
public Adapter createPropertyFillerTextTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerDateFuture <em>Property Filler Date Future</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.osbp.xtext.entitymock.PropertyFillerDateFuture
* @generated
*/
public Adapter createPropertyFillerDateFutureAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerDatePast <em>Property Filler Date Past</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.osbp.xtext.entitymock.PropertyFillerDatePast
* @generated
*/
public Adapter createPropertyFillerDatePastAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerDateRange <em>Property Filler Date Range</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.osbp.xtext.entitymock.PropertyFillerDateRange
* @generated
*/
public Adapter createPropertyFillerDateRangeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerSignedDoubleRange <em>Property Filler Signed Double Range</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.osbp.xtext.entitymock.PropertyFillerSignedDoubleRange
* @generated
*/
public Adapter createPropertyFillerSignedDoubleRangeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerSignedDoubleRandom <em>Property Filler Signed Double Random</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.osbp.xtext.entitymock.PropertyFillerSignedDoubleRandom
* @generated
*/
public Adapter createPropertyFillerSignedDoubleRandomAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerSignedIntegerRange <em>Property Filler Signed Integer Range</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.osbp.xtext.entitymock.PropertyFillerSignedIntegerRange
* @generated
*/
public Adapter createPropertyFillerSignedIntegerRangeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerSignedIntegerRandom <em>Property Filler Signed Integer Random</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.osbp.xtext.entitymock.PropertyFillerSignedIntegerRandom
* @generated
*/
public Adapter createPropertyFillerSignedIntegerRandomAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerTextRandom <em>Property Filler Text Random</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.osbp.xtext.entitymock.PropertyFillerTextRandom
* @generated
*/
public Adapter createPropertyFillerTextRandomAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerTextParagraphs <em>Property Filler Text Paragraphs</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.osbp.xtext.entitymock.PropertyFillerTextParagraphs
* @generated
*/
public Adapter createPropertyFillerTextParagraphsAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerTextSentences <em>Property Filler Text Sentences</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.osbp.xtext.entitymock.PropertyFillerTextSentences
* @generated
*/
public Adapter createPropertyFillerTextSentencesAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerTextWords <em>Property Filler Text Words</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.osbp.xtext.entitymock.PropertyFillerTextWords
* @generated
*/
public Adapter createPropertyFillerTextWordsAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerUnsignedDoubleRange <em>Property Filler Unsigned Double Range</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.osbp.xtext.entitymock.PropertyFillerUnsignedDoubleRange
* @generated
*/
public Adapter createPropertyFillerUnsignedDoubleRangeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerUnsignedDoubleRandom <em>Property Filler Unsigned Double Random</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.osbp.xtext.entitymock.PropertyFillerUnsignedDoubleRandom
* @generated
*/
public Adapter createPropertyFillerUnsignedDoubleRandomAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerUnsignedIntegerRange <em>Property Filler Unsigned Integer Range</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.osbp.xtext.entitymock.PropertyFillerUnsignedIntegerRange
* @generated
*/
public Adapter createPropertyFillerUnsignedIntegerRangeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.PropertyFillerUnsignedIntegerRandom <em>Property Filler Unsigned Integer Random</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.osbp.xtext.entitymock.PropertyFillerUnsignedIntegerRandom
* @generated
*/
public Adapter createPropertyFillerUnsignedIntegerRandomAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockEntities <em>Entity Mock Entities</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.osbp.xtext.entitymock.EntityMockEntities
* @generated
*/
public Adapter createEntityMockEntitiesAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockEntity <em>Entity Mock Entity</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.osbp.xtext.entitymock.EntityMockEntity
* @generated
*/
public Adapter createEntityMockEntityAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.IIterate <em>IIterate</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.osbp.xtext.entitymock.IIterate
* @generated
*/
public Adapter createIIterateAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.IntegerIterate <em>Integer Iterate</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.osbp.xtext.entitymock.IntegerIterate
* @generated
*/
public Adapter createIntegerIterateAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.DateIterate <em>Date Iterate</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.osbp.xtext.entitymock.DateIterate
* @generated
*/
public Adapter createDateIterateAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.Date <em>Date</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.osbp.xtext.entitymock.Date
* @generated
*/
public Adapter createDateAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockByResourceAttribute <em>Entity Mock By Resource Attribute</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.osbp.xtext.entitymock.EntityMockByResourceAttribute
* @generated
*/
public Adapter createEntityMockByResourceAttributeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockTemplate <em>Entity Mock Template</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.osbp.xtext.entitymock.EntityMockTemplate
* @generated
*/
public Adapter createEntityMockTemplateAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.IEntityMockObjectUsable <em>IEntity Mock Object Usable</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.osbp.xtext.entitymock.IEntityMockObjectUsable
* @generated
*/
public Adapter createIEntityMockObjectUsableAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.IEntityMockEntityUsable <em>IEntity Mock Entity Usable</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.osbp.xtext.entitymock.IEntityMockEntityUsable
* @generated
*/
public Adapter createIEntityMockEntityUsableAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.IEntityMockAttribute <em>IEntity Mock Attribute</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.osbp.xtext.entitymock.IEntityMockAttribute
* @generated
*/
public Adapter createIEntityMockAttributeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockReferencedObjectAttribute <em>Entity Mock Referenced Object Attribute</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.osbp.xtext.entitymock.EntityMockReferencedObjectAttribute
* @generated
*/
public Adapter createEntityMockReferencedObjectAttributeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockAttributeByObject <em>Entity Mock Attribute By Object</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.osbp.xtext.entitymock.EntityMockAttributeByObject
* @generated
*/
public Adapter createEntityMockAttributeByObjectAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockAttributeFiller <em>Entity Mock Attribute Filler</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.osbp.xtext.entitymock.EntityMockAttributeFiller
* @generated
*/
public Adapter createEntityMockAttributeFillerAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockAttributeByReference <em>Entity Mock Attribute By 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.osbp.xtext.entitymock.EntityMockAttributeByReference
* @generated
*/
public Adapter createEntityMockAttributeByReferenceAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockEntityFunction <em>Entity Mock Entity Function</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.osbp.xtext.entitymock.EntityMockEntityFunction
* @generated
*/
public Adapter createEntityMockEntityFunctionAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockEntityNestedAttribute <em>Entity Mock Entity Nested Attribute</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.osbp.xtext.entitymock.EntityMockEntityNestedAttribute
* @generated
*/
public Adapter createEntityMockEntityNestedAttributeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.entitymock.EntityMockEntityFunctionParameter <em>Entity Mock Entity Function 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.eclipse.osbp.xtext.entitymock.EntityMockEntityFunctionParameter
* @generated
*/
public Adapter createEntityMockEntityFunctionParameterAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.dsl.semantic.common.types.LLazyResolver <em>LLazy Resolver</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.osbp.dsl.semantic.common.types.LLazyResolver
* @generated
*/
public Adapter createLLazyResolverAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.dsl.semantic.common.types.LPackage <em>LPackage</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.osbp.dsl.semantic.common.types.LPackage
* @generated
*/
public Adapter createLPackageAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.dsl.semantic.common.types.LAnnotationTarget <em>LAnnotation Target</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.osbp.dsl.semantic.common.types.LAnnotationTarget
* @generated
*/
public Adapter createLAnnotationTargetAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.dsl.semantic.common.types.LType <em>LType</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.osbp.dsl.semantic.common.types.LType
* @generated
*/
public Adapter createLTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.dsl.semantic.common.types.LScalarType <em>LScalar 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.osbp.dsl.semantic.common.types.LScalarType
* @generated
*/
public Adapter createLScalarTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.dsl.semantic.common.types.LEnum <em>LEnum</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.osbp.dsl.semantic.common.types.LEnum
* @generated
*/
public Adapter createLEnumAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.dsl.semantic.common.types.LEnumLiteral <em>LEnum 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.osbp.dsl.semantic.common.types.LEnumLiteral
* @generated
*/
public Adapter createLEnumLiteralAdapter() {
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;
}
} //EntityMockDSLAdapterFactory