Interface ICSVListener
This interface defines a complete listener for a parse tree produced by CSVParser.
Namespace: GCore.Antlr.Grammers.Csv
Assembly: Csv.dll
Syntax
public interface ICSVListener : Antlr4.Runtime.Tree.IParseTreeListener
Methods
| Improve this Doc View SourceEnterCsvFile(CSVParser.CsvFileContext)
Enter a parse tree produced by csvFile().
Declaration
void EnterCsvFile(CSVParser.CsvFileContext context)
Parameters
Type | Name | Description |
---|---|---|
CSVParser.CsvFileContext | context | The parse tree. |
EnterField(CSVParser.FieldContext)
Enter a parse tree produced by field().
Declaration
void EnterField(CSVParser.FieldContext context)
Parameters
Type | Name | Description |
---|---|---|
CSVParser.FieldContext | context | The parse tree. |
EnterHdr(CSVParser.HdrContext)
Enter a parse tree produced by hdr().
Declaration
void EnterHdr(CSVParser.HdrContext context)
Parameters
Type | Name | Description |
---|---|---|
CSVParser.HdrContext | context | The parse tree. |
EnterRow(CSVParser.RowContext)
Enter a parse tree produced by row().
Declaration
void EnterRow(CSVParser.RowContext context)
Parameters
Type | Name | Description |
---|---|---|
CSVParser.RowContext | context | The parse tree. |
ExitCsvFile(CSVParser.CsvFileContext)
Exit a parse tree produced by csvFile().
Declaration
void ExitCsvFile(CSVParser.CsvFileContext context)
Parameters
Type | Name | Description |
---|---|---|
CSVParser.CsvFileContext | context | The parse tree. |
ExitField(CSVParser.FieldContext)
Exit a parse tree produced by field().
Declaration
void ExitField(CSVParser.FieldContext context)
Parameters
Type | Name | Description |
---|---|---|
CSVParser.FieldContext | context | The parse tree. |
ExitHdr(CSVParser.HdrContext)
Exit a parse tree produced by hdr().
Declaration
void ExitHdr(CSVParser.HdrContext context)
Parameters
Type | Name | Description |
---|---|---|
CSVParser.HdrContext | context | The parse tree. |
ExitRow(CSVParser.RowContext)
Exit a parse tree produced by row().
Declaration
void ExitRow(CSVParser.RowContext context)
Parameters
Type | Name | Description |
---|---|---|
CSVParser.RowContext | context | The parse tree. |