blob: 0fdf69b910904d471fd81b641e21e17206f80a44 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Willink Transformations and others.
* 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
*
* Contributors:
* Adolfo Sanchez-Barbudo Herrera - initial API and implementation
*******************************************************************************/
/**
* generated by Xtext 2.10.0
*/
package org.eclipse.qvtd.doc.minioclcs.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.jdt.annotation.Nullable;
import org.eclipse.qvtd.doc.minioclcs.*;
/**
* <!-- 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.qvtd.doc.minioclcs.MinioclcsPackage
* @generated
*/
public class MinioclcsAdapterFactory extends AdapterFactoryImpl
{
/**
* The cached model package.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected static MinioclcsPackage modelPackage;
/**
* Creates an instance of the adapter factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public MinioclcsAdapterFactory()
{
if (modelPackage == null) {
modelPackage = MinioclcsPackage.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 MinioclcsSwitch<@Nullable Adapter> modelSwitch =
new MinioclcsSwitch<@Nullable Adapter>() {
@Override
public Adapter caseRootCS(RootCS object) {
return createRootCSAdapter();
}
@Override
public Adapter caseImportCS(ImportCS object) {
return createImportCSAdapter();
}
@Override
public Adapter casePackageCS(PackageCS object) {
return createPackageCSAdapter();
}
@Override
public Adapter caseClassCS(ClassCS object) {
return createClassCSAdapter();
}
@Override
public Adapter casePropertyCS(PropertyCS object) {
return createPropertyCSAdapter();
}
@Override
public Adapter caseMultiplicityCS(MultiplicityCS object) {
return createMultiplicityCSAdapter();
}
@Override
public Adapter caseOperationCS(OperationCS object) {
return createOperationCSAdapter();
}
@Override
public Adapter caseParameterCS(ParameterCS object) {
return createParameterCSAdapter();
}
@Override
public Adapter caseConstraintsDefCS(ConstraintsDefCS object) {
return createConstraintsDefCSAdapter();
}
@Override
public Adapter caseInvariantCS(InvariantCS object) {
return createInvariantCSAdapter();
}
@Override
public Adapter caseExpCS(ExpCS object) {
return createExpCSAdapter();
}
@Override
public Adapter caseEqualityExpCS(EqualityExpCS object) {
return createEqualityExpCSAdapter();
}
@Override
public Adapter caseCallExpCS(CallExpCS object) {
return createCallExpCSAdapter();
}
@Override
public Adapter casePrimaryExpCS(PrimaryExpCS object) {
return createPrimaryExpCSAdapter();
}
@Override
public Adapter caseSelfExpCS(SelfExpCS object) {
return createSelfExpCSAdapter();
}
@Override
public Adapter caseNavigationExpCS(NavigationExpCS object) {
return createNavigationExpCSAdapter();
}
@Override
public Adapter caseLoopExpCS(LoopExpCS object) {
return createLoopExpCSAdapter();
}
@Override
public Adapter caseCollectExpCS(CollectExpCS object) {
return createCollectExpCSAdapter();
}
@Override
public Adapter caseIteratorVarCS(IteratorVarCS object) {
return createIteratorVarCSAdapter();
}
@Override
public Adapter caseIterateExpCS(IterateExpCS object) {
return createIterateExpCSAdapter();
}
@Override
public Adapter caseAccVarCS(AccVarCS object) {
return createAccVarCSAdapter();
}
@Override
public Adapter caseNameExpCS(NameExpCS object) {
return createNameExpCSAdapter();
}
@Override
public Adapter caseRoundedBracketClauseCS(RoundedBracketClauseCS object) {
return createRoundedBracketClauseCSAdapter();
}
@Override
public Adapter caseLiteralExpCS(LiteralExpCS object) {
return createLiteralExpCSAdapter();
}
@Override
public Adapter caseIntLiteralExpCS(IntLiteralExpCS object) {
return createIntLiteralExpCSAdapter();
}
@Override
public Adapter caseBooleanLiteralExpCS(BooleanLiteralExpCS object) {
return createBooleanLiteralExpCSAdapter();
}
@Override
public Adapter caseNullLiteralExpCS(NullLiteralExpCS object) {
return createNullLiteralExpCSAdapter();
}
@Override
public Adapter caseCollectionLiteralExpCS(CollectionLiteralExpCS object) {
return createCollectionLiteralExpCSAdapter();
}
@Override
public Adapter caseCollectionLiteralPartCS(CollectionLiteralPartCS object) {
return createCollectionLiteralPartCSAdapter();
}
@Override
public Adapter caseLetExpCS(LetExpCS object) {
return createLetExpCSAdapter();
}
@Override
public Adapter caseLetVarCS(LetVarCS object) {
return createLetVarCSAdapter();
}
@Override
public Adapter casePathNameCS(PathNameCS object) {
return createPathNameCSAdapter();
}
@Override
public Adapter casePathElementCS(PathElementCS object) {
return createPathElementCSAdapter();
}
@Override
public Adapter caseBooleanExpCS(BooleanExpCS object) {
return createBooleanExpCSAdapter();
}
@Override
public Adapter caseCSTrace(CSTrace object) {
return createCSTraceAdapter();
}
@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.qvtd.doc.minioclcs.RootCS <em>Root CS</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.qvtd.doc.minioclcs.RootCS
* @generated
*/
public Adapter createRootCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.ImportCS <em>Import CS</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.qvtd.doc.minioclcs.ImportCS
* @generated
*/
public Adapter createImportCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.PackageCS <em>Package CS</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.qvtd.doc.minioclcs.PackageCS
* @generated
*/
public Adapter createPackageCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.ClassCS <em>Class CS</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.qvtd.doc.minioclcs.ClassCS
* @generated
*/
public Adapter createClassCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.PropertyCS <em>Property CS</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.qvtd.doc.minioclcs.PropertyCS
* @generated
*/
public Adapter createPropertyCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.MultiplicityCS <em>Multiplicity CS</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.qvtd.doc.minioclcs.MultiplicityCS
* @generated
*/
public Adapter createMultiplicityCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.OperationCS <em>Operation CS</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.qvtd.doc.minioclcs.OperationCS
* @generated
*/
public Adapter createOperationCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.ParameterCS <em>Parameter CS</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.qvtd.doc.minioclcs.ParameterCS
* @generated
*/
public Adapter createParameterCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.ConstraintsDefCS <em>Constraints Def CS</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.qvtd.doc.minioclcs.ConstraintsDefCS
* @generated
*/
public Adapter createConstraintsDefCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.InvariantCS <em>Invariant CS</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.qvtd.doc.minioclcs.InvariantCS
* @generated
*/
public Adapter createInvariantCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.ExpCS <em>Exp CS</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.qvtd.doc.minioclcs.ExpCS
* @generated
*/
public Adapter createExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.EqualityExpCS <em>Equality Exp CS</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.qvtd.doc.minioclcs.EqualityExpCS
* @generated
*/
public Adapter createEqualityExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.CallExpCS <em>Call Exp CS</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.qvtd.doc.minioclcs.CallExpCS
* @generated
*/
public Adapter createCallExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.PrimaryExpCS <em>Primary Exp CS</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.qvtd.doc.minioclcs.PrimaryExpCS
* @generated
*/
public Adapter createPrimaryExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.SelfExpCS <em>Self Exp CS</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.qvtd.doc.minioclcs.SelfExpCS
* @generated
*/
public Adapter createSelfExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.NavigationExpCS <em>Navigation Exp CS</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.qvtd.doc.minioclcs.NavigationExpCS
* @generated
*/
public Adapter createNavigationExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.LoopExpCS <em>Loop Exp CS</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.qvtd.doc.minioclcs.LoopExpCS
* @generated
*/
public Adapter createLoopExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.CollectExpCS <em>Collect Exp CS</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.qvtd.doc.minioclcs.CollectExpCS
* @generated
*/
public Adapter createCollectExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.IteratorVarCS <em>Iterator Var CS</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.qvtd.doc.minioclcs.IteratorVarCS
* @generated
*/
public Adapter createIteratorVarCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.IterateExpCS <em>Iterate Exp CS</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.qvtd.doc.minioclcs.IterateExpCS
* @generated
*/
public Adapter createIterateExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.AccVarCS <em>Acc Var CS</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.qvtd.doc.minioclcs.AccVarCS
* @generated
*/
public Adapter createAccVarCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.NameExpCS <em>Name Exp CS</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.qvtd.doc.minioclcs.NameExpCS
* @generated
*/
public Adapter createNameExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.RoundedBracketClauseCS <em>Rounded Bracket Clause CS</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.qvtd.doc.minioclcs.RoundedBracketClauseCS
* @generated
*/
public Adapter createRoundedBracketClauseCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.LiteralExpCS <em>Literal Exp CS</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.qvtd.doc.minioclcs.LiteralExpCS
* @generated
*/
public Adapter createLiteralExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.IntLiteralExpCS <em>Int Literal Exp CS</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.qvtd.doc.minioclcs.IntLiteralExpCS
* @generated
*/
public Adapter createIntLiteralExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.BooleanLiteralExpCS <em>Boolean Literal Exp CS</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.qvtd.doc.minioclcs.BooleanLiteralExpCS
* @generated
*/
public Adapter createBooleanLiteralExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.NullLiteralExpCS <em>Null Literal Exp CS</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.qvtd.doc.minioclcs.NullLiteralExpCS
* @generated
*/
public Adapter createNullLiteralExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.CollectionLiteralExpCS <em>Collection Literal Exp CS</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.qvtd.doc.minioclcs.CollectionLiteralExpCS
* @generated
*/
public Adapter createCollectionLiteralExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.CollectionLiteralPartCS <em>Collection Literal Part CS</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.qvtd.doc.minioclcs.CollectionLiteralPartCS
* @generated
*/
public Adapter createCollectionLiteralPartCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.LetExpCS <em>Let Exp CS</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.qvtd.doc.minioclcs.LetExpCS
* @generated
*/
public Adapter createLetExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.LetVarCS <em>Let Var CS</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.qvtd.doc.minioclcs.LetVarCS
* @generated
*/
public Adapter createLetVarCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.PathNameCS <em>Path Name CS</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.qvtd.doc.minioclcs.PathNameCS
* @generated
*/
public Adapter createPathNameCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.PathElementCS <em>Path Element CS</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.qvtd.doc.minioclcs.PathElementCS
* @generated
*/
public Adapter createPathElementCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.BooleanExpCS <em>Boolean Exp CS</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.qvtd.doc.minioclcs.BooleanExpCS
* @generated
*/
public Adapter createBooleanExpCSAdapter()
{
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.qvtd.doc.minioclcs.CSTrace <em>CS Trace</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.qvtd.doc.minioclcs.CSTrace
* @generated
*/
public Adapter createCSTraceAdapter() {
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;
}
} //MinioclcsAdapterFactory