cloud.orbit.dsl / OrbitBaseListener

OrbitBaseListener

open class OrbitBaseListener : OrbitListener

This class provides an empty implementation of OrbitListener, which can be extended to create a listener which only needs to handle a subset of the available methods.

Constructors

<init>

OrbitBaseListener()

This class provides an empty implementation of OrbitListener, which can be extended to create a listener which only needs to handle a subset of the available methods.

Functions

enterActorDeclaration

open fun enterActorDeclaration(ctx: OrbitParser.ActorDeclarationContext!): Unit

Enter a parse tree produced by OrbitParser#actorDeclaration.

enterActorMethod

open fun enterActorMethod(ctx: OrbitParser.ActorMethodContext!): Unit

Enter a parse tree produced by OrbitParser#actorMethod.

enterDataDeclaration

open fun enterDataDeclaration(ctx: OrbitParser.DataDeclarationContext!): Unit

Enter a parse tree produced by OrbitParser#dataDeclaration.

enterDataField

open fun enterDataField(ctx: OrbitParser.DataFieldContext!): Unit

Enter a parse tree produced by OrbitParser#dataField.

enterDeclaration

open fun enterDeclaration(ctx: OrbitParser.DeclarationContext!): Unit

Enter a parse tree produced by OrbitParser#declaration.

enterEnumDeclaration

open fun enterEnumDeclaration(ctx: OrbitParser.EnumDeclarationContext!): Unit

Enter a parse tree produced by OrbitParser#enumDeclaration.

enterEnumMember

open fun enterEnumMember(ctx: OrbitParser.EnumMemberContext!): Unit

Enter a parse tree produced by OrbitParser#enumMember.

enterEveryRule

open fun enterEveryRule(ctx: ParserRuleContext!): Unit

The default implementation does nothing.

enterFile

open fun enterFile(ctx: OrbitParser.FileContext!): Unit

Enter a parse tree produced by OrbitParser#file.

enterMethodParam

open fun enterMethodParam(ctx: OrbitParser.MethodParamContext!): Unit

Enter a parse tree produced by OrbitParser#methodParam.

exitActorDeclaration

open fun exitActorDeclaration(ctx: OrbitParser.ActorDeclarationContext!): Unit

Exit a parse tree produced by OrbitParser#actorDeclaration.

exitActorMethod

open fun exitActorMethod(ctx: OrbitParser.ActorMethodContext!): Unit

Exit a parse tree produced by OrbitParser#actorMethod.

exitDataDeclaration

open fun exitDataDeclaration(ctx: OrbitParser.DataDeclarationContext!): Unit

Exit a parse tree produced by OrbitParser#dataDeclaration.

exitDataField

open fun exitDataField(ctx: OrbitParser.DataFieldContext!): Unit

Exit a parse tree produced by OrbitParser#dataField.

exitDeclaration

open fun exitDeclaration(ctx: OrbitParser.DeclarationContext!): Unit

Exit a parse tree produced by OrbitParser#declaration.

exitEnumDeclaration

open fun exitEnumDeclaration(ctx: OrbitParser.EnumDeclarationContext!): Unit

Exit a parse tree produced by OrbitParser#enumDeclaration.

exitEnumMember

open fun exitEnumMember(ctx: OrbitParser.EnumMemberContext!): Unit

Exit a parse tree produced by OrbitParser#enumMember.

exitEveryRule

open fun exitEveryRule(ctx: ParserRuleContext!): Unit

The default implementation does nothing.

exitFile

open fun exitFile(ctx: OrbitParser.FileContext!): Unit

Exit a parse tree produced by OrbitParser#file.

exitMethodParam

open fun exitMethodParam(ctx: OrbitParser.MethodParamContext!): Unit

Exit a parse tree produced by OrbitParser#methodParam.

visitErrorNode

open fun visitErrorNode(node: ErrorNode!): Unit

The default implementation does nothing.

visitTerminal

open fun visitTerminal(node: TerminalNode!): Unit

The default implementation does nothing.