Show / Hide Table of Contents

Class bibcodeBaseVisitor<Result>

This class provides an empty implementation of IbibcodeVisitor<Result>, which can be extended to create a visitor which only needs to handle a subset of the available methods.

Inheritance
System.Object
bibcodeBaseVisitor<Result>
Implements
IbibcodeVisitor<Result>
IParseTreeVisitor<Result>
Namespace: GCore.Antlr.Grammers.Bibcode
Assembly: Bibcode.dll
Syntax
public class bibcodeBaseVisitor<Result> : AbstractParseTreeVisitor<Result>, IbibcodeVisitor<Result>, IParseTreeVisitor<Result>
Type Parameters
Name Description
Result

The return type of the visit operation.

Methods

| Improve this Doc View Source

VisitAuthor(bibcodeParser.AuthorContext)

Visit a parse tree produced by author().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitAuthor(bibcodeParser.AuthorContext context)
Parameters
Type Name Description
bibcodeParser.AuthorContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitBibcode(bibcodeParser.BibcodeContext)

Visit a parse tree produced by bibcode().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitBibcode(bibcodeParser.BibcodeContext context)
Parameters
Type Name Description
bibcodeParser.BibcodeContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitDigit(bibcodeParser.DigitContext)

Visit a parse tree produced by digit().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitDigit(bibcodeParser.DigitContext context)
Parameters
Type Name Description
bibcodeParser.DigitContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitLetter(bibcodeParser.LetterContext)

Visit a parse tree produced by letter().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitLetter(bibcodeParser.LetterContext context)
Parameters
Type Name Description
bibcodeParser.LetterContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitPage(bibcodeParser.PageContext)

Visit a parse tree produced by page().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitPage(bibcodeParser.PageContext context)
Parameters
Type Name Description
bibcodeParser.PageContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitPagesection(bibcodeParser.PagesectionContext)

Visit a parse tree produced by pagesection().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitPagesection(bibcodeParser.PagesectionContext context)
Parameters
Type Name Description
bibcodeParser.PagesectionContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitPublish(bibcodeParser.PublishContext)

Visit a parse tree produced by publish().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitPublish(bibcodeParser.PublishContext context)
Parameters
Type Name Description
bibcodeParser.PublishContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitSection(bibcodeParser.SectionContext)

Visit a parse tree produced by section().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitSection(bibcodeParser.SectionContext context)
Parameters
Type Name Description
bibcodeParser.SectionContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitVolume(bibcodeParser.VolumeContext)

Visit a parse tree produced by volume().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitVolume(bibcodeParser.VolumeContext context)
Parameters
Type Name Description
bibcodeParser.VolumeContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitYear(bibcodeParser.YearContext)

Visit a parse tree produced by year().

The default implementation returns the result of calling on context.

Declaration
public virtual Result VisitYear(bibcodeParser.YearContext context)
Parameters
Type Name Description
bibcodeParser.YearContext context

The parse tree.

Returns
Type Description
Result

Implements

IbibcodeVisitor<Result>
IParseTreeVisitor<>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX