1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
namespace antlr.debug
{
using System;
/// <summary>
/// Provides an abstract base for implementing <see cref="SyntacticPredicateListener"/> subclasses.
/// </summary>
/// <remarks>
/// <param>
/// This abstract class is provided to make it easier to create <see cref="SyntacticPredicateListener"/>s.
/// You should extend this base class rather than creating your own.
/// </param>
/// </remarks>
public abstract class SyntacticPredicateListenerBase : SyntacticPredicateListener
{
/// <summary>
/// Handle the "Done" event.
/// </summary>
/// <param name="source">Event source object</param>
/// <param name="e">Event data object</param>
public virtual void doneParsing(object source, TraceEventArgs e)
{
}
public virtual void refresh()
{
}
/// <summary>
/// Handle the "SynPredFailed" event.
/// </summary>
/// <param name="source">Event source object</param>
/// <param name="e">Event data object</param>
public virtual void syntacticPredicateFailed(object source, SyntacticPredicateEventArgs e)
{
}
/// <summary>
/// Handle the "SynPredStarted" event.
/// </summary>
/// <param name="source">Event source object</param>
/// <param name="e">Event data object</param>
public virtual void syntacticPredicateStarted(object source, SyntacticPredicateEventArgs e)
{
}
/// <summary>
/// Handle the "SynPredSucceeded" event.
/// </summary>
/// <param name="source">Event source object</param>
/// <param name="e">Event data object</param>
public virtual void syntacticPredicateSucceeded(object source, SyntacticPredicateEventArgs e)
{
}
}
}
|