Class domainBaseListener
This class provides an empty implementation of IdomainListener, which can be extended to create a listener which only needs to handle a subset of the available methods.
Inheritance
System.Object
domainBaseListener
Namespace: GCore.Antlr.Grammers.Rfc1035
Assembly: Rfc1035.dll
Syntax
public class domainBaseListener : object, IdomainListener, Antlr4.Runtime.Tree.IParseTreeListener
Methods
| Improve this Doc View SourceEnterDomain(domainParser.DomainContext)
Enter a parse tree produced by domain().
The default implementation does nothing.
Declaration
public virtual void EnterDomain(domainParser.DomainContext context)
Parameters
Type | Name | Description |
---|---|---|
domainParser.DomainContext | context | The parse tree. |
EnterEveryRule(Antlr4.Runtime.ParserRuleContext)
Declaration
public virtual void EnterEveryRule(Antlr4.Runtime.ParserRuleContext context)
Parameters
Type | Name | Description |
---|---|---|
Antlr4.Runtime.ParserRuleContext | context |
Remarks
The default implementation does nothing.
EnterSubdomain(domainParser.SubdomainContext)
Enter a parse tree produced by subdomain().
The default implementation does nothing.
Declaration
public virtual void EnterSubdomain(domainParser.SubdomainContext context)
Parameters
Type | Name | Description |
---|---|---|
domainParser.SubdomainContext | context | The parse tree. |
ExitDomain(domainParser.DomainContext)
Exit a parse tree produced by domain().
The default implementation does nothing.
Declaration
public virtual void ExitDomain(domainParser.DomainContext context)
Parameters
Type | Name | Description |
---|---|---|
domainParser.DomainContext | context | The parse tree. |
ExitEveryRule(Antlr4.Runtime.ParserRuleContext)
Declaration
public virtual void ExitEveryRule(Antlr4.Runtime.ParserRuleContext context)
Parameters
Type | Name | Description |
---|---|---|
Antlr4.Runtime.ParserRuleContext | context |
Remarks
The default implementation does nothing.
ExitSubdomain(domainParser.SubdomainContext)
Exit a parse tree produced by subdomain().
The default implementation does nothing.
Declaration
public virtual void ExitSubdomain(domainParser.SubdomainContext context)
Parameters
Type | Name | Description |
---|---|---|
domainParser.SubdomainContext | context | The parse tree. |
VisitErrorNode(Antlr4.Runtime.Tree.IErrorNode)
Declaration
public virtual void VisitErrorNode(Antlr4.Runtime.Tree.IErrorNode node)
Parameters
Type | Name | Description |
---|---|---|
Antlr4.Runtime.Tree.IErrorNode | node |
Remarks
The default implementation does nothing.
VisitTerminal(Antlr4.Runtime.Tree.ITerminalNode)
Declaration
public virtual void VisitTerminal(Antlr4.Runtime.Tree.ITerminalNode node)
Parameters
Type | Name | Description |
---|---|---|
Antlr4.Runtime.Tree.ITerminalNode | node |
Remarks
The default implementation does nothing.
Implements
Antlr4.Runtime.Tree.IParseTreeListener