public void InformMeAbout(MatcherAction matcherAction, string keyPattern)
 {
     // Not used during tests
 }
 public void InformMeAboutPrefix(MatcherAction matcherAction, string treeName, string prefix)
 {
     // Not used during tests
 }
Example #3
0
 public override void InformMeAboutPrefix(MatcherAction matcherAction, string treeName, string prefix)
 {
     this.InformMeAbout(matcherAction, treeName + "{\"" + UserAgentAnalyzerDirect.FirstCharactersForPrefixHash(prefix, UserAgentAnalyzerDirect.MAX_PREFIX_HASH_MATCH) + "\"");
 }
Example #4
0
 public override void InformMeAbout(MatcherAction matcherAction, string keyPattern)
 {
     this.receivedValues.Add(keyPattern);
 }
Example #5
0
 /// <summary>
 /// Not implemented.
 /// </summary>
 /// <param name="matcherAction">The <see cref="MatcherAction"/>.</param>
 /// <param name="treeName">name of the tree.</param>
 /// <param name="prefix">The prefix.</param>
 public void InformMeAboutPrefix(MatcherAction matcherAction, string treeName, string prefix)
 {
 }
Example #6
0
 /// <summary>
 /// Not implemented.
 /// </summary>
 /// <param name="matcherAction">The <see cref="MatcherAction"/>.</param>
 /// <param name="keyPattern">The key pattern.</param>
 public void InformMeAbout(MatcherAction matcherAction, string keyPattern)
 {
 }
Example #7
0
 /// <summary>
 /// Initializes a new instance of the <see cref="InitErrorListener{T}"/> class.
 /// </summary>
 /// <param name="matcherAction">The matcherAction<see cref="MatcherAction"/>.</param>
 public InitErrorListener(MatcherAction matcherAction)
     : base()
 {
     this.MatcherAction = matcherAction;
 }