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: ActorDeclarationContext): Unit

{@inheritDoc}

The default implementation does nothing.

enterActorMethod

open fun enterActorMethod(ctx: ActorMethodContext): Unit

{@inheritDoc}

The default implementation does nothing.

enterDataDeclaration

open fun enterDataDeclaration(ctx: DataDeclarationContext): Unit

{@inheritDoc}

The default implementation does nothing.

enterDataField

open fun enterDataField(ctx: DataFieldContext): Unit

{@inheritDoc}

The default implementation does nothing.

enterDeclaration

open fun enterDeclaration(ctx: DeclarationContext): Unit

{@inheritDoc}

The default implementation does nothing.

enterEnumDeclaration

open fun enterEnumDeclaration(ctx: EnumDeclarationContext): Unit

{@inheritDoc}

The default implementation does nothing.

enterEnumMember

open fun enterEnumMember(ctx: EnumMemberContext): Unit

{@inheritDoc}

The default implementation does nothing.

enterEveryRule

open fun enterEveryRule(ctx: ParserRuleContext): Unit

{@inheritDoc}

The default implementation does nothing.

enterFile

open fun enterFile(ctx: FileContext): Unit

{@inheritDoc}

The default implementation does nothing.

enterMethodParam

open fun enterMethodParam(ctx: MethodParamContext): Unit

{@inheritDoc}

The default implementation does nothing.

enterType

open fun enterType(ctx: TypeContext): Unit

{@inheritDoc}

The default implementation does nothing.

exitActorDeclaration

open fun exitActorDeclaration(ctx: ActorDeclarationContext): Unit

{@inheritDoc}

The default implementation does nothing.

exitActorMethod

open fun exitActorMethod(ctx: ActorMethodContext): Unit

{@inheritDoc}

The default implementation does nothing.

exitDataDeclaration

open fun exitDataDeclaration(ctx: DataDeclarationContext): Unit

{@inheritDoc}

The default implementation does nothing.

exitDataField

open fun exitDataField(ctx: DataFieldContext): Unit

{@inheritDoc}

The default implementation does nothing.

exitDeclaration

open fun exitDeclaration(ctx: DeclarationContext): Unit

{@inheritDoc}

The default implementation does nothing.

exitEnumDeclaration

open fun exitEnumDeclaration(ctx: EnumDeclarationContext): Unit

{@inheritDoc}

The default implementation does nothing.

exitEnumMember

open fun exitEnumMember(ctx: EnumMemberContext): Unit

{@inheritDoc}

The default implementation does nothing.

exitEveryRule

open fun exitEveryRule(ctx: ParserRuleContext): Unit

{@inheritDoc}

The default implementation does nothing.

exitFile

open fun exitFile(ctx: FileContext): Unit

{@inheritDoc}

The default implementation does nothing.

exitMethodParam

open fun exitMethodParam(ctx: MethodParamContext): Unit

{@inheritDoc}

The default implementation does nothing.

exitType

open fun exitType(ctx: TypeContext): Unit

{@inheritDoc}

The default implementation does nothing.

visitErrorNode

open fun visitErrorNode(node: ErrorNode): Unit

{@inheritDoc}

The default implementation does nothing.

visitTerminal

open fun visitTerminal(node: TerminalNode): Unit

{@inheritDoc}

The default implementation does nothing.