Class GremlinAdapterFactory

java.lang.Object
org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
fr.inria.atlanmod.mogwai.gremlin.util.GremlinAdapterFactory
All Implemented Interfaces:
org.eclipse.emf.common.notify.AdapterFactory

public class GremlinAdapterFactory
extends org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
The Adapter Factory for the model. It provides an adapter createXXX method for each class of the model.
See Also:
GremlinPackage
  • Field Details

    • modelPackage

      protected static GremlinPackage modelPackage
      The cached model package.
    • modelSwitch

      protected GremlinSwitch<org.eclipse.emf.common.notify.Adapter> modelSwitch
      The switch that delegates to the createXXX methods.
  • Constructor Details

    • GremlinAdapterFactory

      public GremlinAdapterFactory()
      Creates an instance of the adapter factory.
  • Method Details

    • isFactoryForType

      public boolean isFactoryForType​(Object object)
      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.
      Specified by:
      isFactoryForType in interface org.eclipse.emf.common.notify.AdapterFactory
      Overrides:
      isFactoryForType in class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
      Returns:
      whether this factory is applicable for the type of the object.
    • createAdapter

      public org.eclipse.emf.common.notify.Adapter createAdapter​(org.eclipse.emf.common.notify.Notifier target)
      Creates an adapter for the target.
      Overrides:
      createAdapter in class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
      Parameters:
      target - the object to adapt.
      Returns:
      the adapter for the target.
    • createGremlinScriptAdapter

      public org.eclipse.emf.common.notify.Adapter createGremlinScriptAdapter()
      Creates a new adapter for an object of class 'Script'. 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.
      Returns:
      the new adapter.
      See Also:
      GremlinScript
    • createInstructionAdapter

      public org.eclipse.emf.common.notify.Adapter createInstructionAdapter()
      Creates a new adapter for an object of class 'Instruction'. 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.
      Returns:
      the new adapter.
      See Also:
      Instruction
    • createReturnStatementAdapter

      public org.eclipse.emf.common.notify.Adapter createReturnStatementAdapter()
      Creates a new adapter for an object of class 'Return Statement'. 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.
      Returns:
      the new adapter.
      See Also:
      ReturnStatement
    • createMethodDeclarationAdapter

      public org.eclipse.emf.common.notify.Adapter createMethodDeclarationAdapter()
      Creates a new adapter for an object of class 'Method Declaration'. 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.
      Returns:
      the new adapter.
      See Also:
      MethodDeclaration
    • createTypeDeclarationAdapter

      public org.eclipse.emf.common.notify.Adapter createTypeDeclarationAdapter()
      Creates a new adapter for an object of class 'Type Declaration'. 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.
      Returns:
      the new adapter.
      See Also:
      TypeDeclaration
    • createListDeclarationAdapter

      public org.eclipse.emf.common.notify.Adapter createListDeclarationAdapter()
      Creates a new adapter for an object of class 'List Declaration'. 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.
      Returns:
      the new adapter.
      See Also:
      ListDeclaration
    • createSetDeclarationAdapter

      public org.eclipse.emf.common.notify.Adapter createSetDeclarationAdapter()
      Creates a new adapter for an object of class 'Set Declaration'. 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.
      Returns:
      the new adapter.
      See Also:
      SetDeclaration
    • createSortedSetDeclarationAdapter

      public org.eclipse.emf.common.notify.Adapter createSortedSetDeclarationAdapter()
      Creates a new adapter for an object of class 'Sorted Set Declaration'. 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.
      Returns:
      the new adapter.
      See Also:
      SortedSetDeclaration
    • createVariableDeclarationAdapter

      public org.eclipse.emf.common.notify.Adapter createVariableDeclarationAdapter()
      Creates a new adapter for an object of class 'Variable Declaration'. 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.
      Returns:
      the new adapter.
      See Also:
      VariableDeclaration
    • createTraversalElementAdapter

      public org.eclipse.emf.common.notify.Adapter createTraversalElementAdapter()
      Creates a new adapter for an object of class 'Traversal 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.
      Returns:
      the new adapter.
      See Also:
      TraversalElement
    • createCollectionDefinitionAdapter

      public org.eclipse.emf.common.notify.Adapter createCollectionDefinitionAdapter()
      Creates a new adapter for an object of class 'Collection Definition'. 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.
      Returns:
      the new adapter.
      See Also:
      CollectionDefinition
    • createClosureAdapter

      public org.eclipse.emf.common.notify.Adapter createClosureAdapter()
      Creates a new adapter for an object of class 'Closure'. 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.
      Returns:
      the new adapter.
      See Also:
      Closure
    • createClosureItAdapter

      public org.eclipse.emf.common.notify.Adapter createClosureItAdapter()
      Creates a new adapter for an object of class 'Closure It'. 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.
      Returns:
      the new adapter.
      See Also:
      ClosureIt
    • createVariableAccessAdapter

      public org.eclipse.emf.common.notify.Adapter createVariableAccessAdapter()
      Creates a new adapter for an object of class 'Variable Access'. 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.
      Returns:
      the new adapter.
      See Also:
      VariableAccess
    • createStepAdapter

      public org.eclipse.emf.common.notify.Adapter createStepAdapter()
      Creates a new adapter for an object of class 'Step'. 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.
      Returns:
      the new adapter.
      See Also:
      Step
    • createIdentityStepAdapter

      public org.eclipse.emf.common.notify.Adapter createIdentityStepAdapter()
      Creates a new adapter for an object of class 'Identity Step'. 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.
      Returns:
      the new adapter.
      See Also:
      IdentityStep
    • createFillStepAdapter

      public org.eclipse.emf.common.notify.Adapter createFillStepAdapter()
      Creates a new adapter for an object of class 'Fill Step'. 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.
      Returns:
      the new adapter.
      See Also:
      FillStep
    • createStartStepAdapter

      public org.eclipse.emf.common.notify.Adapter createStartStepAdapter()
      Creates a new adapter for an object of class 'Start Step'. 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.
      Returns:
      the new adapter.
      See Also:
      StartStep
    • createVerticesStepAdapter

      public org.eclipse.emf.common.notify.Adapter createVerticesStepAdapter()
      Creates a new adapter for an object of class 'Vertices Step'. 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.
      Returns:
      the new adapter.
      See Also:
      VerticesStep
    • createEdgesStepAdapter

      public org.eclipse.emf.common.notify.Adapter createEdgesStepAdapter()
      Creates a new adapter for an object of class 'Edges Step'. 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.
      Returns:
      the new adapter.
      See Also:
      EdgesStep
    • createPropertyStepAdapter

      public org.eclipse.emf.common.notify.Adapter createPropertyStepAdapter()
      Creates a new adapter for an object of class 'Property Step'. 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.
      Returns:
      the new adapter.
      See Also:
      PropertyStep
    • createOutEStepAdapter

      public org.eclipse.emf.common.notify.Adapter createOutEStepAdapter()
      Creates a new adapter for an object of class 'Out EStep'. 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.
      Returns:
      the new adapter.
      See Also:
      OutEStep
    • createInEStepAdapter

      public org.eclipse.emf.common.notify.Adapter createInEStepAdapter()
      Creates a new adapter for an object of class 'In EStep'. 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.
      Returns:
      the new adapter.
      See Also:
      InEStep
    • createInVStepAdapter

      public org.eclipse.emf.common.notify.Adapter createInVStepAdapter()
      Creates a new adapter for an object of class 'In VStep'. 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.
      Returns:
      the new adapter.
      See Also:
      InVStep
    • createOutVStepAdapter

      public org.eclipse.emf.common.notify.Adapter createOutVStepAdapter()
      Creates a new adapter for an object of class 'Out VStep'. 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.
      Returns:
      the new adapter.
      See Also:
      OutVStep
    • createFilterStepAdapter

      public org.eclipse.emf.common.notify.Adapter createFilterStepAdapter()
      Creates a new adapter for an object of class 'Filter Step'. 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.
      Returns:
      the new adapter.
      See Also:
      FilterStep
    • createRetainStepAdapter

      public org.eclipse.emf.common.notify.Adapter createRetainStepAdapter()
      Creates a new adapter for an object of class 'Retain Step'. 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.
      Returns:
      the new adapter.
      See Also:
      RetainStep
    • createExceptStepAdapter

      public org.eclipse.emf.common.notify.Adapter createExceptStepAdapter()
      Creates a new adapter for an object of class 'Except Step'. 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.
      Returns:
      the new adapter.
      See Also:
      ExceptStep
    • createTransformStepAdapter

      public org.eclipse.emf.common.notify.Adapter createTransformStepAdapter()
      Creates a new adapter for an object of class 'Transform Step'. 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.
      Returns:
      the new adapter.
      See Also:
      TransformStep
    • createGatherStepAdapter

      public org.eclipse.emf.common.notify.Adapter createGatherStepAdapter()
      Creates a new adapter for an object of class 'Gather Step'. 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.
      Returns:
      the new adapter.
      See Also:
      GatherStep
    • createScatterStepAdapter

      public org.eclipse.emf.common.notify.Adapter createScatterStepAdapter()
      Creates a new adapter for an object of class 'Scatter Step'. 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.
      Returns:
      the new adapter.
      See Also:
      ScatterStep
    • createMethodCallAdapter

      public org.eclipse.emf.common.notify.Adapter createMethodCallAdapter()
      Creates a new adapter for an object of class 'Method 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.
      Returns:
      the new adapter.
      See Also:
      MethodCall
    • createCustomMethodCallAdapter

      public org.eclipse.emf.common.notify.Adapter createCustomMethodCallAdapter()
      Creates a new adapter for an object of class 'Custom Method 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.
      Returns:
      the new adapter.
      See Also:
      CustomMethodCall
    • createNextCallAdapter

      public org.eclipse.emf.common.notify.Adapter createNextCallAdapter()
      Creates a new adapter for an object of class 'Next 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.
      Returns:
      the new adapter.
      See Also:
      NextCall
    • createHasNextCallAdapter

      public org.eclipse.emf.common.notify.Adapter createHasNextCallAdapter()
      Creates a new adapter for an object of class 'Has Next 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.
      Returns:
      the new adapter.
      See Also:
      HasNextCall
    • createIndexCallAdapter

      public org.eclipse.emf.common.notify.Adapter createIndexCallAdapter()
      Creates a new adapter for an object of class 'Index 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.
      Returns:
      the new adapter.
      See Also:
      IndexCall
    • createCountCallAdapter

      public org.eclipse.emf.common.notify.Adapter createCountCallAdapter()
      Creates a new adapter for an object of class 'Count 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.
      Returns:
      the new adapter.
      See Also:
      CountCall
    • createFirstCallAdapter

      public org.eclipse.emf.common.notify.Adapter createFirstCallAdapter()
      Creates a new adapter for an object of class 'First 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.
      Returns:
      the new adapter.
      See Also:
      FirstCall
    • createToListCallAdapter

      public org.eclipse.emf.common.notify.Adapter createToListCallAdapter()
      Creates a new adapter for an object of class 'To List 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.
      Returns:
      the new adapter.
      See Also:
      ToListCall
    • createIsEmptyCallAdapter

      public org.eclipse.emf.common.notify.Adapter createIsEmptyCallAdapter()
      Creates a new adapter for an object of class 'Is Empty 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.
      Returns:
      the new adapter.
      See Also:
      IsEmptyCall
    • createContainsCallAdapter

      public org.eclipse.emf.common.notify.Adapter createContainsCallAdapter()
      Creates a new adapter for an object of class 'Contains 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.
      Returns:
      the new adapter.
      See Also:
      ContainsCall
    • createContainsAllCallAdapter

      public org.eclipse.emf.common.notify.Adapter createContainsAllCallAdapter()
      Creates a new adapter for an object of class 'Contains All 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.
      Returns:
      the new adapter.
      See Also:
      ContainsAllCall
    • createAddAllCallAdapter

      public org.eclipse.emf.common.notify.Adapter createAddAllCallAdapter()
      Creates a new adapter for an object of class 'Add All 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.
      Returns:
      the new adapter.
      See Also:
      AddAllCall
    • createRetainAllCallAdapter

      public org.eclipse.emf.common.notify.Adapter createRetainAllCallAdapter()
      Creates a new adapter for an object of class 'Retain All 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.
      Returns:
      the new adapter.
      See Also:
      RetainAllCall
    • createUnionCallAdapter

      public org.eclipse.emf.common.notify.Adapter createUnionCallAdapter()
      Creates a new adapter for an object of class 'Union 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.
      Returns:
      the new adapter.
      See Also:
      UnionCall
    • createIntersectionCallAdapter

      public org.eclipse.emf.common.notify.Adapter createIntersectionCallAdapter()
      Creates a new adapter for an object of class 'Intersection 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.
      Returns:
      the new adapter.
      See Also:
      IntersectionCall
    • createSizeCallAdapter

      public org.eclipse.emf.common.notify.Adapter createSizeCallAdapter()
      Creates a new adapter for an object of class 'Size 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.
      Returns:
      the new adapter.
      See Also:
      SizeCall
    • createExpressionAdapter

      public org.eclipse.emf.common.notify.Adapter createExpressionAdapter()
      Creates a new adapter for an object of class 'Expression'. 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.
      Returns:
      the new adapter.
      See Also:
      Expression
    • createUnaryExpressionAdapter

      public org.eclipse.emf.common.notify.Adapter createUnaryExpressionAdapter()
      Creates a new adapter for an object of class 'Unary Expression'. 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.
      Returns:
      the new adapter.
      See Also:
      UnaryExpression
    • createNotExpressionAdapter

      public org.eclipse.emf.common.notify.Adapter createNotExpressionAdapter()
      Creates a new adapter for an object of class 'Not Expression'. 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.
      Returns:
      the new adapter.
      See Also:
      NotExpression
    • createBinaryExpressionAdapter

      public org.eclipse.emf.common.notify.Adapter createBinaryExpressionAdapter()
      Creates a new adapter for an object of class 'Binary Expression'. 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.
      Returns:
      the new adapter.
      See Also:
      BinaryExpression
    • createEqualityExpressionAdapter

      public org.eclipse.emf.common.notify.Adapter createEqualityExpressionAdapter()
      Creates a new adapter for an object of class 'Equality Expression'. 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.
      Returns:
      the new adapter.
      See Also:
      EqualityExpression
    • createInExpressionAdapter

      public org.eclipse.emf.common.notify.Adapter createInExpressionAdapter()
      Creates a new adapter for an object of class 'In Expression'. 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.
      Returns:
      the new adapter.
      See Also:
      InExpression
    • createDifferenceExpressionAdapter

      public org.eclipse.emf.common.notify.Adapter createDifferenceExpressionAdapter()
      Creates a new adapter for an object of class 'Difference Expression'. 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.
      Returns:
      the new adapter.
      See Also:
      DifferenceExpression
    • createOrExpressionAdapter

      public org.eclipse.emf.common.notify.Adapter createOrExpressionAdapter()
      Creates a new adapter for an object of class 'Or Expression'. 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.
      Returns:
      the new adapter.
      See Also:
      OrExpression
    • createAndExpressionAdapter

      public org.eclipse.emf.common.notify.Adapter createAndExpressionAdapter()
      Creates a new adapter for an object of class 'And Expression'. 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.
      Returns:
      the new adapter.
      See Also:
      AndExpression
    • createGreaterExpressionAdapter

      public org.eclipse.emf.common.notify.Adapter createGreaterExpressionAdapter()
      Creates a new adapter for an object of class 'Greater Expression'. 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.
      Returns:
      the new adapter.
      See Also:
      GreaterExpression
    • createGreaterOrEqualExpressionAdapter

      public org.eclipse.emf.common.notify.Adapter createGreaterOrEqualExpressionAdapter()
      Creates a new adapter for an object of class 'Greater Or Equal Expression'. 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.
      Returns:
      the new adapter.
      See Also:
      GreaterOrEqualExpression
    • createLessExpressionAdapter

      public org.eclipse.emf.common.notify.Adapter createLessExpressionAdapter()
      Creates a new adapter for an object of class 'Less Expression'. 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.
      Returns:
      the new adapter.
      See Also:
      LessExpression
    • createLessOrEqualExpressionAdapter

      public org.eclipse.emf.common.notify.Adapter createLessOrEqualExpressionAdapter()
      Creates a new adapter for an object of class 'Less Or Equal Expression'. 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.
      Returns:
      the new adapter.
      See Also:
      LessOrEqualExpression
    • createAffectationExpressionAdapter

      public org.eclipse.emf.common.notify.Adapter createAffectationExpressionAdapter()
      Creates a new adapter for an object of class 'Affectation Expression'. 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.
      Returns:
      the new adapter.
      See Also:
      AffectationExpression
    • createLeftShiftExpressionAdapter

      public org.eclipse.emf.common.notify.Adapter createLeftShiftExpressionAdapter()
      Creates a new adapter for an object of class 'Left Shift Expression'. 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.
      Returns:
      the new adapter.
      See Also:
      LeftShiftExpression
    • createTernaryOperatorAdapter

      public org.eclipse.emf.common.notify.Adapter createTernaryOperatorAdapter()
      Creates a new adapter for an object of class 'Ternary Operator'. 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.
      Returns:
      the new adapter.
      See Also:
      TernaryOperator
    • createStringLiteralAdapter

      public org.eclipse.emf.common.notify.Adapter createStringLiteralAdapter()
      Creates a new adapter for an object of class 'String Literal'. 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.
      Returns:
      the new adapter.
      See Also:
      StringLiteral
    • createIntegerLiteralAdapter

      public org.eclipse.emf.common.notify.Adapter createIntegerLiteralAdapter()
      Creates a new adapter for an object of class 'Integer Literal'. 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.
      Returns:
      the new adapter.
      See Also:
      IntegerLiteral
    • createDoubleLiteralAdapter

      public org.eclipse.emf.common.notify.Adapter createDoubleLiteralAdapter()
      Creates a new adapter for an object of class 'Double Literal'. 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.
      Returns:
      the new adapter.
      See Also:
      DoubleLiteral
    • createBooleanLiteralAdapter

      public org.eclipse.emf.common.notify.Adapter createBooleanLiteralAdapter()
      Creates a new adapter for an object of class 'Boolean Literal'. 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.
      Returns:
      the new adapter.
      See Also:
      BooleanLiteral
    • createNullLiteralAdapter

      public org.eclipse.emf.common.notify.Adapter createNullLiteralAdapter()
      Creates a new adapter for an object of class 'Null Literal'. 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.
      Returns:
      the new adapter.
      See Also:
      NullLiteral
    • createToIntegerCallAdapter

      public org.eclipse.emf.common.notify.Adapter createToIntegerCallAdapter()
      Creates a new adapter for an object of class 'To Integer 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.
      Returns:
      the new adapter.
      See Also:
      ToIntegerCall
    • createPlusExpressionAdapter

      public org.eclipse.emf.common.notify.Adapter createPlusExpressionAdapter()
      Creates a new adapter for an object of class 'Plus Expression'. 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.
      Returns:
      the new adapter.
      See Also:
      PlusExpression
    • createCustomStepAdapter

      public org.eclipse.emf.common.notify.Adapter createCustomStepAdapter()
      Creates a new adapter for an object of class 'Custom Step'. 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.
      Returns:
      the new adapter.
      See Also:
      CustomStep
    • createEObjectAdapter

      public org.eclipse.emf.common.notify.Adapter createEObjectAdapter()
      Creates a new adapter for the default case. This default implementation returns null.
      Returns:
      the new adapter.