net.sourceforge.javamatch.engine
Interface MatchListener


public interface MatchListener

Interface MatchListener is implemented by classes that want to be notified of events during the matching process. A MatchListener should be registered with the @link MatchEngine, to receive its notifications


Method Summary
 void matchQueryFinished(MatchQuery query, MatchResult result)
          Called after a match query has completed, just before returning the query execution results
 void matchQueryStarted(MatchQuery query)
          Called before the match engine starts executing a match query
 

Method Detail

matchQueryStarted

public void matchQueryStarted(MatchQuery query)
Called before the match engine starts executing a match query

Parameters:
query - the query that is about to be executed

matchQueryFinished

public void matchQueryFinished(MatchQuery query,
                               MatchResult result)
Called after a match query has completed, just before returning the query execution results

Parameters:
query - the query that has been executed
result - the result of the matching process

Hosted by SourceForge.net/