#ifndef __LUCENE_ANALYSIS_ANALYZER__
#define __LUCENE_ANALYSIS_ANALYZER__

#include <Foundation/Foundation.h>
#include "LCReader.h"
#include "LCTokenStream.h"

@interface LCAnalyzer: NSObject
{
}

/* Return a stream of token */
- (LCTokenStream *) tokenStreamWithField: (NSString *) name
                                  reader: (id <LCReader>) reader;
- (int) positionIncrementGap: (NSString *) fieldName;
@end

#endif /* __LUCENE_ANALYSIS_ANALYZER__ */


syntax highlighted by Code2HTML, v. 0.9.1