Class GraphqlBaseListener
- java.lang.Object
-
- graphql.parser.antlr.GraphqlBaseListener
-
- All Implemented Interfaces:
GraphqlListener
,org.antlr.v4.runtime.tree.ParseTreeListener
public class GraphqlBaseListener extends java.lang.Object implements GraphqlListener
This class provides an empty implementation ofGraphqlListener
, which can be extended to create a listener which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description GraphqlBaseListener()
-
Method Summary
-
-
-
Method Detail
-
enterDocument
public void enterDocument(GraphqlParser.DocumentContext ctx)
Enter a parse tree produced byGraphqlParser.document()
.The default implementation does nothing.
- Specified by:
enterDocument
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitDocument
public void exitDocument(GraphqlParser.DocumentContext ctx)
Exit a parse tree produced byGraphqlParser.document()
.The default implementation does nothing.
- Specified by:
exitDocument
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterDefinition
public void enterDefinition(GraphqlParser.DefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.definition()
.The default implementation does nothing.
- Specified by:
enterDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitDefinition
public void exitDefinition(GraphqlParser.DefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.definition()
.The default implementation does nothing.
- Specified by:
exitDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterTypeSystemDefinition
public void enterTypeSystemDefinition(GraphqlParser.TypeSystemDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.typeSystemDefinition()
.The default implementation does nothing.
- Specified by:
enterTypeSystemDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitTypeSystemDefinition
public void exitTypeSystemDefinition(GraphqlParser.TypeSystemDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.typeSystemDefinition()
.The default implementation does nothing.
- Specified by:
exitTypeSystemDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterTypeSystemExtension
public void enterTypeSystemExtension(GraphqlParser.TypeSystemExtensionContext ctx)
Enter a parse tree produced byGraphqlParser.typeSystemExtension()
.The default implementation does nothing.
- Specified by:
enterTypeSystemExtension
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitTypeSystemExtension
public void exitTypeSystemExtension(GraphqlParser.TypeSystemExtensionContext ctx)
Exit a parse tree produced byGraphqlParser.typeSystemExtension()
.The default implementation does nothing.
- Specified by:
exitTypeSystemExtension
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterSchemaDefinition
public void enterSchemaDefinition(GraphqlParser.SchemaDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.schemaDefinition()
.The default implementation does nothing.
- Specified by:
enterSchemaDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitSchemaDefinition
public void exitSchemaDefinition(GraphqlParser.SchemaDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.schemaDefinition()
.The default implementation does nothing.
- Specified by:
exitSchemaDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterSchemaExtension
public void enterSchemaExtension(GraphqlParser.SchemaExtensionContext ctx)
Enter a parse tree produced byGraphqlParser.schemaExtension()
.The default implementation does nothing.
- Specified by:
enterSchemaExtension
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitSchemaExtension
public void exitSchemaExtension(GraphqlParser.SchemaExtensionContext ctx)
Exit a parse tree produced byGraphqlParser.schemaExtension()
.The default implementation does nothing.
- Specified by:
exitSchemaExtension
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterOperationTypeDefinition
public void enterOperationTypeDefinition(GraphqlParser.OperationTypeDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.operationTypeDefinition()
.The default implementation does nothing.
- Specified by:
enterOperationTypeDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitOperationTypeDefinition
public void exitOperationTypeDefinition(GraphqlParser.OperationTypeDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.operationTypeDefinition()
.The default implementation does nothing.
- Specified by:
exitOperationTypeDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterTypeDefinition
public void enterTypeDefinition(GraphqlParser.TypeDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.typeDefinition()
.The default implementation does nothing.
- Specified by:
enterTypeDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitTypeDefinition
public void exitTypeDefinition(GraphqlParser.TypeDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.typeDefinition()
.The default implementation does nothing.
- Specified by:
exitTypeDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterTypeExtension
public void enterTypeExtension(GraphqlParser.TypeExtensionContext ctx)
Enter a parse tree produced byGraphqlParser.typeExtension()
.The default implementation does nothing.
- Specified by:
enterTypeExtension
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitTypeExtension
public void exitTypeExtension(GraphqlParser.TypeExtensionContext ctx)
Exit a parse tree produced byGraphqlParser.typeExtension()
.The default implementation does nothing.
- Specified by:
exitTypeExtension
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterEmptyParentheses
public void enterEmptyParentheses(GraphqlParser.EmptyParenthesesContext ctx)
Enter a parse tree produced byGraphqlParser.emptyParentheses()
.The default implementation does nothing.
- Specified by:
enterEmptyParentheses
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitEmptyParentheses
public void exitEmptyParentheses(GraphqlParser.EmptyParenthesesContext ctx)
Exit a parse tree produced byGraphqlParser.emptyParentheses()
.The default implementation does nothing.
- Specified by:
exitEmptyParentheses
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterScalarTypeDefinition
public void enterScalarTypeDefinition(GraphqlParser.ScalarTypeDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.scalarTypeDefinition()
.The default implementation does nothing.
- Specified by:
enterScalarTypeDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitScalarTypeDefinition
public void exitScalarTypeDefinition(GraphqlParser.ScalarTypeDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.scalarTypeDefinition()
.The default implementation does nothing.
- Specified by:
exitScalarTypeDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterScalarTypeExtensionDefinition
public void enterScalarTypeExtensionDefinition(GraphqlParser.ScalarTypeExtensionDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.scalarTypeExtensionDefinition()
.The default implementation does nothing.
- Specified by:
enterScalarTypeExtensionDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitScalarTypeExtensionDefinition
public void exitScalarTypeExtensionDefinition(GraphqlParser.ScalarTypeExtensionDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.scalarTypeExtensionDefinition()
.The default implementation does nothing.
- Specified by:
exitScalarTypeExtensionDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterObjectTypeDefinition
public void enterObjectTypeDefinition(GraphqlParser.ObjectTypeDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.objectTypeDefinition()
.The default implementation does nothing.
- Specified by:
enterObjectTypeDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitObjectTypeDefinition
public void exitObjectTypeDefinition(GraphqlParser.ObjectTypeDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.objectTypeDefinition()
.The default implementation does nothing.
- Specified by:
exitObjectTypeDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterObjectTypeExtensionDefinition
public void enterObjectTypeExtensionDefinition(GraphqlParser.ObjectTypeExtensionDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.objectTypeExtensionDefinition()
.The default implementation does nothing.
- Specified by:
enterObjectTypeExtensionDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitObjectTypeExtensionDefinition
public void exitObjectTypeExtensionDefinition(GraphqlParser.ObjectTypeExtensionDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.objectTypeExtensionDefinition()
.The default implementation does nothing.
- Specified by:
exitObjectTypeExtensionDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterImplementsInterfaces
public void enterImplementsInterfaces(GraphqlParser.ImplementsInterfacesContext ctx)
Enter a parse tree produced byGraphqlParser.implementsInterfaces()
.The default implementation does nothing.
- Specified by:
enterImplementsInterfaces
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitImplementsInterfaces
public void exitImplementsInterfaces(GraphqlParser.ImplementsInterfacesContext ctx)
Exit a parse tree produced byGraphqlParser.implementsInterfaces()
.The default implementation does nothing.
- Specified by:
exitImplementsInterfaces
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterFieldsDefinition
public void enterFieldsDefinition(GraphqlParser.FieldsDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.fieldsDefinition()
.The default implementation does nothing.
- Specified by:
enterFieldsDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitFieldsDefinition
public void exitFieldsDefinition(GraphqlParser.FieldsDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.fieldsDefinition()
.The default implementation does nothing.
- Specified by:
exitFieldsDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterExtensionFieldsDefinition
public void enterExtensionFieldsDefinition(GraphqlParser.ExtensionFieldsDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.extensionFieldsDefinition()
.The default implementation does nothing.
- Specified by:
enterExtensionFieldsDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitExtensionFieldsDefinition
public void exitExtensionFieldsDefinition(GraphqlParser.ExtensionFieldsDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.extensionFieldsDefinition()
.The default implementation does nothing.
- Specified by:
exitExtensionFieldsDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterFieldDefinition
public void enterFieldDefinition(GraphqlParser.FieldDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.fieldDefinition()
.The default implementation does nothing.
- Specified by:
enterFieldDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitFieldDefinition
public void exitFieldDefinition(GraphqlParser.FieldDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.fieldDefinition()
.The default implementation does nothing.
- Specified by:
exitFieldDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterArgumentsDefinition
public void enterArgumentsDefinition(GraphqlParser.ArgumentsDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.argumentsDefinition()
.The default implementation does nothing.
- Specified by:
enterArgumentsDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitArgumentsDefinition
public void exitArgumentsDefinition(GraphqlParser.ArgumentsDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.argumentsDefinition()
.The default implementation does nothing.
- Specified by:
exitArgumentsDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterInputValueDefinition
public void enterInputValueDefinition(GraphqlParser.InputValueDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.inputValueDefinition()
.The default implementation does nothing.
- Specified by:
enterInputValueDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitInputValueDefinition
public void exitInputValueDefinition(GraphqlParser.InputValueDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.inputValueDefinition()
.The default implementation does nothing.
- Specified by:
exitInputValueDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterInterfaceTypeDefinition
public void enterInterfaceTypeDefinition(GraphqlParser.InterfaceTypeDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.interfaceTypeDefinition()
.The default implementation does nothing.
- Specified by:
enterInterfaceTypeDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitInterfaceTypeDefinition
public void exitInterfaceTypeDefinition(GraphqlParser.InterfaceTypeDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.interfaceTypeDefinition()
.The default implementation does nothing.
- Specified by:
exitInterfaceTypeDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterInterfaceTypeExtensionDefinition
public void enterInterfaceTypeExtensionDefinition(GraphqlParser.InterfaceTypeExtensionDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.interfaceTypeExtensionDefinition()
.The default implementation does nothing.
- Specified by:
enterInterfaceTypeExtensionDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitInterfaceTypeExtensionDefinition
public void exitInterfaceTypeExtensionDefinition(GraphqlParser.InterfaceTypeExtensionDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.interfaceTypeExtensionDefinition()
.The default implementation does nothing.
- Specified by:
exitInterfaceTypeExtensionDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterUnionTypeDefinition
public void enterUnionTypeDefinition(GraphqlParser.UnionTypeDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.unionTypeDefinition()
.The default implementation does nothing.
- Specified by:
enterUnionTypeDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitUnionTypeDefinition
public void exitUnionTypeDefinition(GraphqlParser.UnionTypeDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.unionTypeDefinition()
.The default implementation does nothing.
- Specified by:
exitUnionTypeDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterUnionTypeExtensionDefinition
public void enterUnionTypeExtensionDefinition(GraphqlParser.UnionTypeExtensionDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.unionTypeExtensionDefinition()
.The default implementation does nothing.
- Specified by:
enterUnionTypeExtensionDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitUnionTypeExtensionDefinition
public void exitUnionTypeExtensionDefinition(GraphqlParser.UnionTypeExtensionDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.unionTypeExtensionDefinition()
.The default implementation does nothing.
- Specified by:
exitUnionTypeExtensionDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterUnionMembership
public void enterUnionMembership(GraphqlParser.UnionMembershipContext ctx)
Enter a parse tree produced byGraphqlParser.unionMembership()
.The default implementation does nothing.
- Specified by:
enterUnionMembership
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitUnionMembership
public void exitUnionMembership(GraphqlParser.UnionMembershipContext ctx)
Exit a parse tree produced byGraphqlParser.unionMembership()
.The default implementation does nothing.
- Specified by:
exitUnionMembership
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterUnionMembers
public void enterUnionMembers(GraphqlParser.UnionMembersContext ctx)
Enter a parse tree produced byGraphqlParser.unionMembers()
.The default implementation does nothing.
- Specified by:
enterUnionMembers
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitUnionMembers
public void exitUnionMembers(GraphqlParser.UnionMembersContext ctx)
Exit a parse tree produced byGraphqlParser.unionMembers()
.The default implementation does nothing.
- Specified by:
exitUnionMembers
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterEnumTypeDefinition
public void enterEnumTypeDefinition(GraphqlParser.EnumTypeDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.enumTypeDefinition()
.The default implementation does nothing.
- Specified by:
enterEnumTypeDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitEnumTypeDefinition
public void exitEnumTypeDefinition(GraphqlParser.EnumTypeDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.enumTypeDefinition()
.The default implementation does nothing.
- Specified by:
exitEnumTypeDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterEnumTypeExtensionDefinition
public void enterEnumTypeExtensionDefinition(GraphqlParser.EnumTypeExtensionDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.enumTypeExtensionDefinition()
.The default implementation does nothing.
- Specified by:
enterEnumTypeExtensionDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitEnumTypeExtensionDefinition
public void exitEnumTypeExtensionDefinition(GraphqlParser.EnumTypeExtensionDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.enumTypeExtensionDefinition()
.The default implementation does nothing.
- Specified by:
exitEnumTypeExtensionDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterEnumValueDefinitions
public void enterEnumValueDefinitions(GraphqlParser.EnumValueDefinitionsContext ctx)
Enter a parse tree produced byGraphqlParser.enumValueDefinitions()
.The default implementation does nothing.
- Specified by:
enterEnumValueDefinitions
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitEnumValueDefinitions
public void exitEnumValueDefinitions(GraphqlParser.EnumValueDefinitionsContext ctx)
Exit a parse tree produced byGraphqlParser.enumValueDefinitions()
.The default implementation does nothing.
- Specified by:
exitEnumValueDefinitions
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterExtensionEnumValueDefinitions
public void enterExtensionEnumValueDefinitions(GraphqlParser.ExtensionEnumValueDefinitionsContext ctx)
Enter a parse tree produced byGraphqlParser.extensionEnumValueDefinitions()
.The default implementation does nothing.
- Specified by:
enterExtensionEnumValueDefinitions
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitExtensionEnumValueDefinitions
public void exitExtensionEnumValueDefinitions(GraphqlParser.ExtensionEnumValueDefinitionsContext ctx)
Exit a parse tree produced byGraphqlParser.extensionEnumValueDefinitions()
.The default implementation does nothing.
- Specified by:
exitExtensionEnumValueDefinitions
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterEnumValueDefinition
public void enterEnumValueDefinition(GraphqlParser.EnumValueDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.enumValueDefinition()
.The default implementation does nothing.
- Specified by:
enterEnumValueDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitEnumValueDefinition
public void exitEnumValueDefinition(GraphqlParser.EnumValueDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.enumValueDefinition()
.The default implementation does nothing.
- Specified by:
exitEnumValueDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterInputObjectTypeDefinition
public void enterInputObjectTypeDefinition(GraphqlParser.InputObjectTypeDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.inputObjectTypeDefinition()
.The default implementation does nothing.
- Specified by:
enterInputObjectTypeDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitInputObjectTypeDefinition
public void exitInputObjectTypeDefinition(GraphqlParser.InputObjectTypeDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.inputObjectTypeDefinition()
.The default implementation does nothing.
- Specified by:
exitInputObjectTypeDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterInputObjectTypeExtensionDefinition
public void enterInputObjectTypeExtensionDefinition(GraphqlParser.InputObjectTypeExtensionDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.inputObjectTypeExtensionDefinition()
.The default implementation does nothing.
- Specified by:
enterInputObjectTypeExtensionDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitInputObjectTypeExtensionDefinition
public void exitInputObjectTypeExtensionDefinition(GraphqlParser.InputObjectTypeExtensionDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.inputObjectTypeExtensionDefinition()
.The default implementation does nothing.
- Specified by:
exitInputObjectTypeExtensionDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterInputObjectValueDefinitions
public void enterInputObjectValueDefinitions(GraphqlParser.InputObjectValueDefinitionsContext ctx)
Enter a parse tree produced byGraphqlParser.inputObjectValueDefinitions()
.The default implementation does nothing.
- Specified by:
enterInputObjectValueDefinitions
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitInputObjectValueDefinitions
public void exitInputObjectValueDefinitions(GraphqlParser.InputObjectValueDefinitionsContext ctx)
Exit a parse tree produced byGraphqlParser.inputObjectValueDefinitions()
.The default implementation does nothing.
- Specified by:
exitInputObjectValueDefinitions
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterExtensionInputObjectValueDefinitions
public void enterExtensionInputObjectValueDefinitions(GraphqlParser.ExtensionInputObjectValueDefinitionsContext ctx)
Enter a parse tree produced byGraphqlParser.extensionInputObjectValueDefinitions()
.The default implementation does nothing.
- Specified by:
enterExtensionInputObjectValueDefinitions
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitExtensionInputObjectValueDefinitions
public void exitExtensionInputObjectValueDefinitions(GraphqlParser.ExtensionInputObjectValueDefinitionsContext ctx)
Exit a parse tree produced byGraphqlParser.extensionInputObjectValueDefinitions()
.The default implementation does nothing.
- Specified by:
exitExtensionInputObjectValueDefinitions
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterDirectiveDefinition
public void enterDirectiveDefinition(GraphqlParser.DirectiveDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.directiveDefinition()
.The default implementation does nothing.
- Specified by:
enterDirectiveDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitDirectiveDefinition
public void exitDirectiveDefinition(GraphqlParser.DirectiveDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.directiveDefinition()
.The default implementation does nothing.
- Specified by:
exitDirectiveDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterDirectiveLocation
public void enterDirectiveLocation(GraphqlParser.DirectiveLocationContext ctx)
Enter a parse tree produced byGraphqlParser.directiveLocation()
.The default implementation does nothing.
- Specified by:
enterDirectiveLocation
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitDirectiveLocation
public void exitDirectiveLocation(GraphqlParser.DirectiveLocationContext ctx)
Exit a parse tree produced byGraphqlParser.directiveLocation()
.The default implementation does nothing.
- Specified by:
exitDirectiveLocation
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterDirectiveLocations
public void enterDirectiveLocations(GraphqlParser.DirectiveLocationsContext ctx)
Enter a parse tree produced byGraphqlParser.directiveLocations()
.The default implementation does nothing.
- Specified by:
enterDirectiveLocations
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitDirectiveLocations
public void exitDirectiveLocations(GraphqlParser.DirectiveLocationsContext ctx)
Exit a parse tree produced byGraphqlParser.directiveLocations()
.The default implementation does nothing.
- Specified by:
exitDirectiveLocations
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterOperationType
public void enterOperationType(GraphqlParser.OperationTypeContext ctx)
Enter a parse tree produced byGraphqlParser.operationType()
.The default implementation does nothing.
- Specified by:
enterOperationType
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitOperationType
public void exitOperationType(GraphqlParser.OperationTypeContext ctx)
Exit a parse tree produced byGraphqlParser.operationType()
.The default implementation does nothing.
- Specified by:
exitOperationType
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterDescription
public void enterDescription(GraphqlParser.DescriptionContext ctx)
Enter a parse tree produced byGraphqlParser.description()
.The default implementation does nothing.
- Specified by:
enterDescription
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitDescription
public void exitDescription(GraphqlParser.DescriptionContext ctx)
Exit a parse tree produced byGraphqlParser.description()
.The default implementation does nothing.
- Specified by:
exitDescription
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterEnumValue
public void enterEnumValue(GraphqlParser.EnumValueContext ctx)
Enter a parse tree produced byGraphqlParser.enumValue()
.The default implementation does nothing.
- Specified by:
enterEnumValue
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitEnumValue
public void exitEnumValue(GraphqlParser.EnumValueContext ctx)
Exit a parse tree produced byGraphqlParser.enumValue()
.The default implementation does nothing.
- Specified by:
exitEnumValue
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterArrayValue
public void enterArrayValue(GraphqlParser.ArrayValueContext ctx)
Enter a parse tree produced byGraphqlParser.arrayValue()
.The default implementation does nothing.
- Specified by:
enterArrayValue
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitArrayValue
public void exitArrayValue(GraphqlParser.ArrayValueContext ctx)
Exit a parse tree produced byGraphqlParser.arrayValue()
.The default implementation does nothing.
- Specified by:
exitArrayValue
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterArrayValueWithVariable
public void enterArrayValueWithVariable(GraphqlParser.ArrayValueWithVariableContext ctx)
Enter a parse tree produced byGraphqlParser.arrayValueWithVariable()
.The default implementation does nothing.
- Specified by:
enterArrayValueWithVariable
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitArrayValueWithVariable
public void exitArrayValueWithVariable(GraphqlParser.ArrayValueWithVariableContext ctx)
Exit a parse tree produced byGraphqlParser.arrayValueWithVariable()
.The default implementation does nothing.
- Specified by:
exitArrayValueWithVariable
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterObjectValue
public void enterObjectValue(GraphqlParser.ObjectValueContext ctx)
Enter a parse tree produced byGraphqlParser.objectValue()
.The default implementation does nothing.
- Specified by:
enterObjectValue
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitObjectValue
public void exitObjectValue(GraphqlParser.ObjectValueContext ctx)
Exit a parse tree produced byGraphqlParser.objectValue()
.The default implementation does nothing.
- Specified by:
exitObjectValue
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterObjectValueWithVariable
public void enterObjectValueWithVariable(GraphqlParser.ObjectValueWithVariableContext ctx)
Enter a parse tree produced byGraphqlParser.objectValueWithVariable()
.The default implementation does nothing.
- Specified by:
enterObjectValueWithVariable
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitObjectValueWithVariable
public void exitObjectValueWithVariable(GraphqlParser.ObjectValueWithVariableContext ctx)
Exit a parse tree produced byGraphqlParser.objectValueWithVariable()
.The default implementation does nothing.
- Specified by:
exitObjectValueWithVariable
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterObjectField
public void enterObjectField(GraphqlParser.ObjectFieldContext ctx)
Enter a parse tree produced byGraphqlParser.objectField()
.The default implementation does nothing.
- Specified by:
enterObjectField
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitObjectField
public void exitObjectField(GraphqlParser.ObjectFieldContext ctx)
Exit a parse tree produced byGraphqlParser.objectField()
.The default implementation does nothing.
- Specified by:
exitObjectField
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterObjectFieldWithVariable
public void enterObjectFieldWithVariable(GraphqlParser.ObjectFieldWithVariableContext ctx)
Enter a parse tree produced byGraphqlParser.objectFieldWithVariable()
.The default implementation does nothing.
- Specified by:
enterObjectFieldWithVariable
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitObjectFieldWithVariable
public void exitObjectFieldWithVariable(GraphqlParser.ObjectFieldWithVariableContext ctx)
Exit a parse tree produced byGraphqlParser.objectFieldWithVariable()
.The default implementation does nothing.
- Specified by:
exitObjectFieldWithVariable
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterDirectives
public void enterDirectives(GraphqlParser.DirectivesContext ctx)
Enter a parse tree produced byGraphqlParser.directives()
.The default implementation does nothing.
- Specified by:
enterDirectives
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitDirectives
public void exitDirectives(GraphqlParser.DirectivesContext ctx)
Exit a parse tree produced byGraphqlParser.directives()
.The default implementation does nothing.
- Specified by:
exitDirectives
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterDirective
public void enterDirective(GraphqlParser.DirectiveContext ctx)
Enter a parse tree produced byGraphqlParser.directive()
.The default implementation does nothing.
- Specified by:
enterDirective
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitDirective
public void exitDirective(GraphqlParser.DirectiveContext ctx)
Exit a parse tree produced byGraphqlParser.directive()
.The default implementation does nothing.
- Specified by:
exitDirective
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterArguments
public void enterArguments(GraphqlParser.ArgumentsContext ctx)
Enter a parse tree produced byGraphqlParser.arguments()
.The default implementation does nothing.
- Specified by:
enterArguments
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitArguments
public void exitArguments(GraphqlParser.ArgumentsContext ctx)
Exit a parse tree produced byGraphqlParser.arguments()
.The default implementation does nothing.
- Specified by:
exitArguments
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterArgument
public void enterArgument(GraphqlParser.ArgumentContext ctx)
Enter a parse tree produced byGraphqlParser.argument()
.The default implementation does nothing.
- Specified by:
enterArgument
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitArgument
public void exitArgument(GraphqlParser.ArgumentContext ctx)
Exit a parse tree produced byGraphqlParser.argument()
.The default implementation does nothing.
- Specified by:
exitArgument
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterBaseName
public void enterBaseName(GraphqlParser.BaseNameContext ctx)
Enter a parse tree produced byGraphqlParser.baseName()
.The default implementation does nothing.
- Specified by:
enterBaseName
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitBaseName
public void exitBaseName(GraphqlParser.BaseNameContext ctx)
Exit a parse tree produced byGraphqlParser.baseName()
.The default implementation does nothing.
- Specified by:
exitBaseName
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterFragmentName
public void enterFragmentName(GraphqlParser.FragmentNameContext ctx)
Enter a parse tree produced byGraphqlParser.fragmentName()
.The default implementation does nothing.
- Specified by:
enterFragmentName
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitFragmentName
public void exitFragmentName(GraphqlParser.FragmentNameContext ctx)
Exit a parse tree produced byGraphqlParser.fragmentName()
.The default implementation does nothing.
- Specified by:
exitFragmentName
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterEnumValueName
public void enterEnumValueName(GraphqlParser.EnumValueNameContext ctx)
Enter a parse tree produced byGraphqlParser.enumValueName()
.The default implementation does nothing.
- Specified by:
enterEnumValueName
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitEnumValueName
public void exitEnumValueName(GraphqlParser.EnumValueNameContext ctx)
Exit a parse tree produced byGraphqlParser.enumValueName()
.The default implementation does nothing.
- Specified by:
exitEnumValueName
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterName
public void enterName(GraphqlParser.NameContext ctx)
Enter a parse tree produced byGraphqlParser.name()
.The default implementation does nothing.
- Specified by:
enterName
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitName
public void exitName(GraphqlParser.NameContext ctx)
Exit a parse tree produced byGraphqlParser.name()
.The default implementation does nothing.
- Specified by:
exitName
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterValue
public void enterValue(GraphqlParser.ValueContext ctx)
Enter a parse tree produced byGraphqlParser.value()
.The default implementation does nothing.
- Specified by:
enterValue
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitValue
public void exitValue(GraphqlParser.ValueContext ctx)
Exit a parse tree produced byGraphqlParser.value()
.The default implementation does nothing.
- Specified by:
exitValue
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterValueWithVariable
public void enterValueWithVariable(GraphqlParser.ValueWithVariableContext ctx)
Enter a parse tree produced byGraphqlParser.valueWithVariable()
.The default implementation does nothing.
- Specified by:
enterValueWithVariable
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitValueWithVariable
public void exitValueWithVariable(GraphqlParser.ValueWithVariableContext ctx)
Exit a parse tree produced byGraphqlParser.valueWithVariable()
.The default implementation does nothing.
- Specified by:
exitValueWithVariable
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterVariable
public void enterVariable(GraphqlParser.VariableContext ctx)
Enter a parse tree produced byGraphqlParser.variable()
.The default implementation does nothing.
- Specified by:
enterVariable
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitVariable
public void exitVariable(GraphqlParser.VariableContext ctx)
Exit a parse tree produced byGraphqlParser.variable()
.The default implementation does nothing.
- Specified by:
exitVariable
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterDefaultValue
public void enterDefaultValue(GraphqlParser.DefaultValueContext ctx)
Enter a parse tree produced byGraphqlParser.defaultValue()
.The default implementation does nothing.
- Specified by:
enterDefaultValue
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitDefaultValue
public void exitDefaultValue(GraphqlParser.DefaultValueContext ctx)
Exit a parse tree produced byGraphqlParser.defaultValue()
.The default implementation does nothing.
- Specified by:
exitDefaultValue
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterType
public void enterType(GraphqlParser.TypeContext ctx)
Enter a parse tree produced byGraphqlParser.type()
.The default implementation does nothing.
- Specified by:
enterType
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitType
public void exitType(GraphqlParser.TypeContext ctx)
Exit a parse tree produced byGraphqlParser.type()
.The default implementation does nothing.
- Specified by:
exitType
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterTypeName
public void enterTypeName(GraphqlParser.TypeNameContext ctx)
Enter a parse tree produced byGraphqlParser.typeName()
.The default implementation does nothing.
- Specified by:
enterTypeName
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitTypeName
public void exitTypeName(GraphqlParser.TypeNameContext ctx)
Exit a parse tree produced byGraphqlParser.typeName()
.The default implementation does nothing.
- Specified by:
exitTypeName
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterListType
public void enterListType(GraphqlParser.ListTypeContext ctx)
Enter a parse tree produced byGraphqlParser.listType()
.The default implementation does nothing.
- Specified by:
enterListType
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitListType
public void exitListType(GraphqlParser.ListTypeContext ctx)
Exit a parse tree produced byGraphqlParser.listType()
.The default implementation does nothing.
- Specified by:
exitListType
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterNonNullType
public void enterNonNullType(GraphqlParser.NonNullTypeContext ctx)
Enter a parse tree produced byGraphqlParser.nonNullType()
.The default implementation does nothing.
- Specified by:
enterNonNullType
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitNonNullType
public void exitNonNullType(GraphqlParser.NonNullTypeContext ctx)
Exit a parse tree produced byGraphqlParser.nonNullType()
.The default implementation does nothing.
- Specified by:
exitNonNullType
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterOperationDefinition
public void enterOperationDefinition(GraphqlParser.OperationDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.operationDefinition()
.The default implementation does nothing.
- Specified by:
enterOperationDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitOperationDefinition
public void exitOperationDefinition(GraphqlParser.OperationDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.operationDefinition()
.The default implementation does nothing.
- Specified by:
exitOperationDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterVariableDefinitions
public void enterVariableDefinitions(GraphqlParser.VariableDefinitionsContext ctx)
Enter a parse tree produced byGraphqlParser.variableDefinitions()
.The default implementation does nothing.
- Specified by:
enterVariableDefinitions
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitVariableDefinitions
public void exitVariableDefinitions(GraphqlParser.VariableDefinitionsContext ctx)
Exit a parse tree produced byGraphqlParser.variableDefinitions()
.The default implementation does nothing.
- Specified by:
exitVariableDefinitions
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterVariableDefinition
public void enterVariableDefinition(GraphqlParser.VariableDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.variableDefinition()
.The default implementation does nothing.
- Specified by:
enterVariableDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitVariableDefinition
public void exitVariableDefinition(GraphqlParser.VariableDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.variableDefinition()
.The default implementation does nothing.
- Specified by:
exitVariableDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterSelectionSet
public void enterSelectionSet(GraphqlParser.SelectionSetContext ctx)
Enter a parse tree produced byGraphqlParser.selectionSet()
.The default implementation does nothing.
- Specified by:
enterSelectionSet
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitSelectionSet
public void exitSelectionSet(GraphqlParser.SelectionSetContext ctx)
Exit a parse tree produced byGraphqlParser.selectionSet()
.The default implementation does nothing.
- Specified by:
exitSelectionSet
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterSelection
public void enterSelection(GraphqlParser.SelectionContext ctx)
Enter a parse tree produced byGraphqlParser.selection()
.The default implementation does nothing.
- Specified by:
enterSelection
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitSelection
public void exitSelection(GraphqlParser.SelectionContext ctx)
Exit a parse tree produced byGraphqlParser.selection()
.The default implementation does nothing.
- Specified by:
exitSelection
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterField
public void enterField(GraphqlParser.FieldContext ctx)
Enter a parse tree produced byGraphqlParser.field()
.The default implementation does nothing.
- Specified by:
enterField
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitField
public void exitField(GraphqlParser.FieldContext ctx)
Exit a parse tree produced byGraphqlParser.field()
.The default implementation does nothing.
- Specified by:
exitField
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterAlias
public void enterAlias(GraphqlParser.AliasContext ctx)
Enter a parse tree produced byGraphqlParser.alias()
.The default implementation does nothing.
- Specified by:
enterAlias
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitAlias
public void exitAlias(GraphqlParser.AliasContext ctx)
Exit a parse tree produced byGraphqlParser.alias()
.The default implementation does nothing.
- Specified by:
exitAlias
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterFragmentSpread
public void enterFragmentSpread(GraphqlParser.FragmentSpreadContext ctx)
Enter a parse tree produced byGraphqlParser.fragmentSpread()
.The default implementation does nothing.
- Specified by:
enterFragmentSpread
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitFragmentSpread
public void exitFragmentSpread(GraphqlParser.FragmentSpreadContext ctx)
Exit a parse tree produced byGraphqlParser.fragmentSpread()
.The default implementation does nothing.
- Specified by:
exitFragmentSpread
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterInlineFragment
public void enterInlineFragment(GraphqlParser.InlineFragmentContext ctx)
Enter a parse tree produced byGraphqlParser.inlineFragment()
.The default implementation does nothing.
- Specified by:
enterInlineFragment
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitInlineFragment
public void exitInlineFragment(GraphqlParser.InlineFragmentContext ctx)
Exit a parse tree produced byGraphqlParser.inlineFragment()
.The default implementation does nothing.
- Specified by:
exitInlineFragment
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterFragmentDefinition
public void enterFragmentDefinition(GraphqlParser.FragmentDefinitionContext ctx)
Enter a parse tree produced byGraphqlParser.fragmentDefinition()
.The default implementation does nothing.
- Specified by:
enterFragmentDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitFragmentDefinition
public void exitFragmentDefinition(GraphqlParser.FragmentDefinitionContext ctx)
Exit a parse tree produced byGraphqlParser.fragmentDefinition()
.The default implementation does nothing.
- Specified by:
exitFragmentDefinition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterTypeCondition
public void enterTypeCondition(GraphqlParser.TypeConditionContext ctx)
Enter a parse tree produced byGraphqlParser.typeCondition()
.The default implementation does nothing.
- Specified by:
enterTypeCondition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
exitTypeCondition
public void exitTypeCondition(GraphqlParser.TypeConditionContext ctx)
Exit a parse tree produced byGraphqlParser.typeCondition()
.The default implementation does nothing.
- Specified by:
exitTypeCondition
in interfaceGraphqlListener
- Parameters:
ctx
- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
enterEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
exitEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
- Specified by:
visitTerminal
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
- Specified by:
visitErrorNode
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
-