org.nasdanika.models.functionflow.util.FunctionFlowAdapterFactory Maven / Gradle / Ivy
The newest version!
/**
*/
package org.nasdanika.models.functionflow.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.nasdanika.common.Adaptable;
import org.nasdanika.drawio.model.SemanticElement;
import org.nasdanika.graph.model.Connection;
import org.nasdanika.graph.model.ConnectionSource;
import org.nasdanika.graph.model.ConnectionTarget;
import org.nasdanika.graph.model.DocumentedNamedConnection;
import org.nasdanika.graph.model.DocumentedNamedConnectionSource;
import org.nasdanika.graph.model.DocumentedNamedConnectionTarget;
import org.nasdanika.graph.model.DocumentedNamedGraph;
import org.nasdanika.graph.model.DocumentedNamedGraphElement;
import org.nasdanika.graph.model.Graph;
import org.nasdanika.graph.model.GraphElement;
import org.nasdanika.models.architecture.ArchitectureDescription;
import org.nasdanika.models.architecture.ArchitectureDescriptionElement;
import org.nasdanika.models.architecture.ArchitectureElement;
import org.nasdanika.models.architecture.CompositeNode;
import org.nasdanika.models.architecture.Domain;
import org.nasdanika.models.architecture.Node;
import org.nasdanika.models.architecture.Relationship;
import org.nasdanika.models.architecture.RelationshipSource;
import org.nasdanika.models.architecture.RelationshipTarget;
import org.nasdanika.models.architecture.Undergoer;
import org.nasdanika.models.functionflow.*;
import org.nasdanika.ncore.Documented;
import org.nasdanika.ncore.DocumentedNamedElement;
import org.nasdanika.ncore.DocumentedNamedStringIdentity;
import org.nasdanika.ncore.ModelElement;
import org.nasdanika.ncore.NamedElement;
import org.nasdanika.ncore.Period;
import org.nasdanika.ncore.StringIdentity;
import org.nasdanika.persistence.Marked;
/**
*
* The Adapter Factory for the model.
* It provides an adapter createXXX
method for each class of the model.
*
* @see org.nasdanika.models.functionflow.FunctionFlowPackage
* @generated
*/
public class FunctionFlowAdapterFactory extends AdapterFactoryImpl {
/**
* The cached model package.
*
*
* @generated
*/
protected static FunctionFlowPackage modelPackage;
/**
* Creates an instance of the adapter factory.
*
*
* @generated
*/
public FunctionFlowAdapterFactory() {
if (modelPackage == null) {
modelPackage = FunctionFlowPackage.eINSTANCE;
}
}
/**
* Returns whether this factory is applicable for the type of the object.
*
* This implementation returns true
if the object is either the model's package or is an instance object of the model.
*
* @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 createXXX
methods.
*
*
* @generated
*/
protected FunctionFlowSwitch modelSwitch =
new FunctionFlowSwitch() {
@Override
public Adapter caseFlowElement(FlowElement object) {
return createFlowElementAdapter();
}
@Override
public Adapter caseStart(Start object) {
return createStartAdapter();
}
@Override
public Adapter caseSupplier(Supplier object) {
return createSupplierAdapter();
}
@Override
public Adapter caseSubscriber(Subscriber object) {
return createSubscriberAdapter();
}
@Override
public Adapter caseErrorHandler(ErrorHandler object) {
return createErrorHandlerAdapter();
}
@Override
public Adapter caseEnd(End object) {
return createEndAdapter();
}
@Override
public Adapter caseConsumer(Consumer object) {
return createConsumerAdapter();
}
@Override
public Adapter casePublisher(Publisher object) {
return createPublisherAdapter();
}
@Override
public Adapter caseFunction(Function object) {
return createFunctionAdapter();
}
@Override
public Adapter caseTransition(Transition object) {
return createTransitionAdapter();
}
@Override
public Adapter caseCall(Call object) {
return createCallAdapter();
}
@Override
public Adapter caseErrorTransition(ErrorTransition object) {
return createErrorTransitionAdapter();
}
@Override
public Adapter caseFlow(Flow object) {
return createFlowAdapter();
}
@Override
public Adapter caseSupplierFlow(SupplierFlow object) {
return createSupplierFlowAdapter();
}
@Override
public Adapter caseConsumerFlow(ConsumerFlow object) {
return createConsumerFlowAdapter();
}
@Override
public Adapter caseFunctionFlow(FunctionFlow object) {
return createFunctionFlowAdapter();
}
@Override
public Adapter caseSource(Source object) {
return createSourceAdapter();
}
@Override
public Adapter caseSourceSupplier(SourceSupplier object) {
return createSourceSupplierAdapter();
}
@Override
public Adapter caseSourceConsumer(SourceConsumer object) {
return createSourceConsumerAdapter();
}
@Override
public Adapter caseSourceFunction(SourceFunction object) {
return createSourceFunctionAdapter();
}
@Override
public Adapter caseSourceTransition(SourceTransition object) {
return createSourceTransitionAdapter();
}
@Override
public Adapter caseSourceCall(SourceCall object) {
return createSourceCallAdapter();
}
@Override
public Adapter caseSourceErrorTransition(SourceErrorTransition object) {
return createSourceErrorTransitionAdapter();
}
@Override
public Adapter caseSourceErrorHandler(SourceErrorHandler object) {
return createSourceErrorHandlerAdapter();
}
@Override
public Adapter caseStringIdentity(StringIdentity object) {
return createStringIdentityAdapter();
}
@Override
public Adapter caseSemanticElement(SemanticElement object) {
return createSemanticElementAdapter();
}
@Override
public Adapter caseGraphElement(GraphElement object) {
return createGraphElementAdapter();
}
@Override
public Adapter caseIMarked(Marked object) {
return createIMarkedAdapter();
}
@Override
public Adapter caseMarked(org.nasdanika.ncore.Marked object) {
return createMarkedAdapter();
}
@Override
public Adapter caseAdaptable(Adaptable object) {
return createAdaptableAdapter();
}
@Override
public Adapter caseModelElement(ModelElement object) {
return createModelElementAdapter();
}
@Override
public Adapter caseNamedElement(NamedElement object) {
return createNamedElementAdapter();
}
@Override
public Adapter caseDocumented(Documented object) {
return createDocumentedAdapter();
}
@Override
public Adapter caseDocumentedNamedElement(DocumentedNamedElement object) {
return createDocumentedNamedElementAdapter();
}
@Override
public Adapter caseDocumentedNamedStringIdentity(DocumentedNamedStringIdentity object) {
return createDocumentedNamedStringIdentityAdapter();
}
@Override
public Adapter caseDocumentedNamedGraphElement(DocumentedNamedGraphElement object) {
return createDocumentedNamedGraphElementAdapter();
}
@Override
public Adapter casePeriod(Period object) {
return createPeriodAdapter();
}
@Override
public Adapter caseArchitectureElement(ArchitectureElement object) {
return createArchitectureElementAdapter();
}
@Override
public Adapter caseUndergoer(Undergoer object) {
return createUndergoerAdapter();
}
@Override
public Adapter caseArchitectureDescriptionElement(ArchitectureDescriptionElement object) {
return createArchitectureDescriptionElementAdapter();
}
@Override
public > Adapter caseConnectionSource(ConnectionSource object) {
return createConnectionSourceAdapter();
}
@Override
public > Adapter caseDocumentedNamedConnectionSource(DocumentedNamedConnectionSource object) {
return createDocumentedNamedConnectionSourceAdapter();
}
@Override
public Adapter caseRelationshipSource(RelationshipSource object) {
return createRelationshipSourceAdapter();
}
@Override
public > Adapter caseConnectionTarget(ConnectionTarget object) {
return createConnectionTargetAdapter();
}
@Override
public > Adapter caseDocumentedNamedConnectionTarget(DocumentedNamedConnectionTarget object) {
return createDocumentedNamedConnectionTargetAdapter();
}
@Override
public Adapter caseRelationshipTarget(RelationshipTarget object) {
return createRelationshipTargetAdapter();
}
@Override
public Adapter caseNode(Node object) {
return createNodeAdapter();
}
@Override
public > Adapter caseConnection(Connection object) {
return createConnectionAdapter();
}
@Override
public > Adapter caseDocumentedNamedConnection(DocumentedNamedConnection object) {
return createDocumentedNamedConnectionAdapter();
}
@Override
public Adapter caseRelationship(Relationship object) {
return createRelationshipAdapter();
}
@Override
public Adapter caseGraph(Graph object) {
return createGraphAdapter();
}
@Override
public Adapter caseDocumentedNamedGraph(DocumentedNamedGraph object) {
return createDocumentedNamedGraphAdapter();
}
@Override
public Adapter caseArchitectureDescription(ArchitectureDescription object) {
return createArchitectureDescriptionAdapter();
}
@Override
public Adapter caseDomain(Domain object) {
return createDomainAdapter();
}
@Override
public Adapter caseCompositeNode(CompositeNode object) {
return createCompositeNodeAdapter();
}
@Override
public Adapter defaultCase(EObject object) {
return createEObjectAdapter();
}
};
/**
* Creates an adapter for the target
.
*
*
* @param target the object to adapt.
* @return the adapter for the target
.
* @generated
*/
@Override
public Adapter createAdapter(Notifier target) {
return modelSwitch.doSwitch((EObject)target);
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.FlowElement Flow Element}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.FlowElement
* @generated
*/
public Adapter createFlowElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.Start Start}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.Start
* @generated
*/
public Adapter createStartAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.Supplier Supplier}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.Supplier
* @generated
*/
public Adapter createSupplierAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.Subscriber Subscriber}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.Subscriber
* @generated
*/
public Adapter createSubscriberAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.ErrorHandler Error Handler}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.ErrorHandler
* @generated
*/
public Adapter createErrorHandlerAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.End End}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.End
* @generated
*/
public Adapter createEndAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.Consumer Consumer}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.Consumer
* @generated
*/
public Adapter createConsumerAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.Publisher Publisher}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.Publisher
* @generated
*/
public Adapter createPublisherAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.Function Function}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.Function
* @generated
*/
public Adapter createFunctionAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.Transition Transition}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.Transition
* @generated
*/
public Adapter createTransitionAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.Call Call}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.Call
* @generated
*/
public Adapter createCallAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.ErrorTransition Error Transition}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.ErrorTransition
* @generated
*/
public Adapter createErrorTransitionAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.Flow Flow}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.Flow
* @generated
*/
public Adapter createFlowAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.SupplierFlow Supplier Flow}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.SupplierFlow
* @generated
*/
public Adapter createSupplierFlowAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.ConsumerFlow Consumer Flow}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.ConsumerFlow
* @generated
*/
public Adapter createConsumerFlowAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.FunctionFlow Function Flow}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.FunctionFlow
* @generated
*/
public Adapter createFunctionFlowAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.Source Source}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.Source
* @generated
*/
public Adapter createSourceAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.SourceSupplier Source Supplier}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.SourceSupplier
* @generated
*/
public Adapter createSourceSupplierAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.SourceConsumer Source Consumer}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.SourceConsumer
* @generated
*/
public Adapter createSourceConsumerAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.SourceFunction Source Function}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.SourceFunction
* @generated
*/
public Adapter createSourceFunctionAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.SourceTransition Source Transition}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.SourceTransition
* @generated
*/
public Adapter createSourceTransitionAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.SourceCall Source Call}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.SourceCall
* @generated
*/
public Adapter createSourceCallAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.SourceErrorTransition Source Error Transition}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.SourceErrorTransition
* @generated
*/
public Adapter createSourceErrorTransitionAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.functionflow.SourceErrorHandler Source Error Handler}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.functionflow.SourceErrorHandler
* @generated
*/
public Adapter createSourceErrorHandlerAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.ncore.StringIdentity String Identity}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.ncore.StringIdentity
* @generated
*/
public Adapter createStringIdentityAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.drawio.model.SemanticElement Semantic Element}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.drawio.model.SemanticElement
* @generated
*/
public Adapter createSemanticElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.graph.model.GraphElement Graph Element}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.graph.model.GraphElement
* @generated
*/
public Adapter createGraphElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.persistence.Marked IMarked}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.persistence.Marked
* @generated
*/
public Adapter createIMarkedAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.ncore.Marked Marked}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.ncore.Marked
* @generated
*/
public Adapter createMarkedAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.common.Adaptable Adaptable}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.common.Adaptable
* @generated
*/
public Adapter createAdaptableAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.ncore.ModelElement Model Element}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.ncore.ModelElement
* @generated
*/
public Adapter createModelElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.ncore.NamedElement Named Element}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.ncore.NamedElement
* @generated
*/
public Adapter createNamedElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.ncore.Documented Documented}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.ncore.Documented
* @generated
*/
public Adapter createDocumentedAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.ncore.DocumentedNamedElement Documented Named Element}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.ncore.DocumentedNamedElement
* @generated
*/
public Adapter createDocumentedNamedElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.ncore.DocumentedNamedStringIdentity Documented Named String Identity}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.ncore.DocumentedNamedStringIdentity
* @generated
*/
public Adapter createDocumentedNamedStringIdentityAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.graph.model.DocumentedNamedGraphElement Documented Named Graph Element}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.graph.model.DocumentedNamedGraphElement
* @generated
*/
public Adapter createDocumentedNamedGraphElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.graph.model.ConnectionSource Connection Source}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.graph.model.ConnectionSource
* @generated
*/
public Adapter createConnectionSourceAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.graph.model.DocumentedNamedConnectionSource Documented Named Connection Source}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.graph.model.DocumentedNamedConnectionSource
* @generated
*/
public Adapter createDocumentedNamedConnectionSourceAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.ncore.Period Period}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.ncore.Period
* @generated
*/
public Adapter createPeriodAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.architecture.ArchitectureElement Element}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.architecture.ArchitectureElement
* @generated
*/
public Adapter createArchitectureElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.architecture.Undergoer Undergoer}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.architecture.Undergoer
* @generated
*/
public Adapter createUndergoerAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.architecture.ArchitectureDescriptionElement Description Element}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.architecture.ArchitectureDescriptionElement
* @generated
*/
public Adapter createArchitectureDescriptionElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.architecture.RelationshipSource Relationship Source}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.architecture.RelationshipSource
* @generated
*/
public Adapter createRelationshipSourceAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.graph.model.ConnectionTarget Connection Target}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.graph.model.ConnectionTarget
* @generated
*/
public Adapter createConnectionTargetAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.graph.model.DocumentedNamedConnectionTarget Documented Named Connection Target}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.graph.model.DocumentedNamedConnectionTarget
* @generated
*/
public Adapter createDocumentedNamedConnectionTargetAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.architecture.RelationshipTarget Relationship Target}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.architecture.RelationshipTarget
* @generated
*/
public Adapter createRelationshipTargetAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.architecture.Node Node}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.architecture.Node
* @generated
*/
public Adapter createNodeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.graph.model.Connection Connection}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.graph.model.Connection
* @generated
*/
public Adapter createConnectionAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.graph.model.DocumentedNamedConnection Documented Named Connection}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.graph.model.DocumentedNamedConnection
* @generated
*/
public Adapter createDocumentedNamedConnectionAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.architecture.Relationship Relationship}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.architecture.Relationship
* @generated
*/
public Adapter createRelationshipAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.graph.model.Graph Graph}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.graph.model.Graph
* @generated
*/
public Adapter createGraphAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.graph.model.DocumentedNamedGraph Documented Named Graph}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.graph.model.DocumentedNamedGraph
* @generated
*/
public Adapter createDocumentedNamedGraphAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.architecture.ArchitectureDescription Description}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.architecture.ArchitectureDescription
* @generated
*/
public Adapter createArchitectureDescriptionAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.architecture.Domain Domain}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.architecture.Domain
* @generated
*/
public Adapter createDomainAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.nasdanika.models.architecture.CompositeNode Composite Node}'.
*
* 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.
*
* @return the new adapter.
* @see org.nasdanika.models.architecture.CompositeNode
* @generated
*/
public Adapter createCompositeNodeAdapter() {
return null;
}
/**
* Creates a new adapter for the default case.
*
* This default implementation returns null.
*
* @return the new adapter.
* @generated
*/
public Adapter createEObjectAdapter() {
return null;
}
} //FunctionFlowAdapterFactory