org.cdlib.xtf.textEngine
Class QueryContext

Object
  extended by QueryContext

public class QueryContext
extends Object

Tracks the context in which a query was executed. This includes the list of stop words applied, and the plural and accent maps used.

Author:
Martin Haye

Field Summary
 CharMap accentMap
          The accent map used when processing the query.
 WordMap pluralMap
          The plural map used when processing the query.
 Set stopSet
          The set of stopwords used when processing the query.
 
Constructor Summary
QueryContext()
           
 
Method Summary
 
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

stopSet

public Set stopSet
The set of stopwords used when processing the query.


pluralMap

public WordMap pluralMap
The plural map used when processing the query.


accentMap

public CharMap accentMap
The accent map used when processing the query.

Constructor Detail

QueryContext

public QueryContext()