C# Class Spring.Expressions.Parser.antlr.debug.ParserMatchListenerBase

Provides an abstract base for implementing ParserMatchListener subclasses.
This abstract class is provided to make it easier to create ParserMatchListeners. You should extend this base class rather than creating your own.
Inheritance: ParserMatchListener
显示文件 Open project: spring-projects/spring-net

Public Methods

Method Description
doneParsing ( object source, TraceEventArgs e ) : void

Handle the "Done" event.

parserMatch ( object source, MatchEventArgs e ) : void

Handle the "Match" event.

parserMatchNot ( object source, MatchEventArgs e ) : void

Handle the "MatchNot" event.

parserMismatch ( object source, MatchEventArgs e ) : void

Handle the "MisMatch" event.

parserMismatchNot ( object source, MatchEventArgs e ) : void

Handle the "MisMatchNot" event.

refresh ( ) : void

Method Details

doneParsing() public method

Handle the "Done" event.
public doneParsing ( object source, TraceEventArgs e ) : void
source object Event source object
e TraceEventArgs Event data object
return void

parserMatch() public method

Handle the "Match" event.
public parserMatch ( object source, MatchEventArgs e ) : void
source object Event source object
e MatchEventArgs Event data object
return void

parserMatchNot() public method

Handle the "MatchNot" event.
public parserMatchNot ( object source, MatchEventArgs e ) : void
source object Event source object
e MatchEventArgs Event data object
return void

parserMismatch() public method

Handle the "MisMatch" event.
public parserMismatch ( object source, MatchEventArgs e ) : void
source object Event source object
e MatchEventArgs Event data object
return void

parserMismatchNot() public method

Handle the "MisMatchNot" event.
public parserMismatchNot ( object source, MatchEventArgs e ) : void
source object Event source object
e MatchEventArgs Event data object
return void

refresh() public method

public refresh ( ) : void
return void