summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-mail/dovecot/files/SnowballAnalyzer.h')
-rw-r--r--net-mail/dovecot/files/SnowballAnalyzer.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/net-mail/dovecot/files/SnowballAnalyzer.h b/net-mail/dovecot/files/SnowballAnalyzer.h
deleted file mode 100644
index c82fd990741f..000000000000
--- a/net-mail/dovecot/files/SnowballAnalyzer.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/*------------------------------------------------------------------------------
-* Copyright (C) 2003-2006 Ben van Klinken and the CLucene Team
-*
-* Distributable under the terms of either the Apache License (Version 2.0) or
-* the GNU Lesser General Public License, as specified in the COPYING file.
-------------------------------------------------------------------------------*/
-#ifndef _lucene_analysis_snowball_analyser_
-#define _lucene_analysis_snowball_analyser_
-
-#include "CLucene/analysis/AnalysisHeader.h"
-
-CL_CLASS_DEF(util,BufferedReader)
-CL_NS_DEF2(analysis,snowball)
-
-/** Filters {@link StandardTokenizer} with {@link StandardFilter}, {@link
- * LowerCaseFilter}, {@link StopFilter} and {@link SnowballFilter}.
- *
- * Available stemmers are listed in {@link net.sf.snowball.ext}. The name of a
- * stemmer is the part of the class name before "Stemmer", e.g., the stemmer in
- * {@link EnglishStemmer} is named "English".
- */
-class CLUCENE_CONTRIBS_EXPORT SnowballAnalyzer: public Analyzer {
- char* language;
- CLTCSetList* stopSet;
- TokenStream *prevstream;
-
-public:
- /** Builds the named analyzer with no stop words. */
- SnowballAnalyzer(const char* language="english");
-
- /** Builds the named analyzer with the given stop words.
- */
- SnowballAnalyzer(const char* language, const TCHAR** stopWords);
-
- ~SnowballAnalyzer();
-
- /** Constructs a {@link StandardTokenizer} filtered by a {@link
- StandardFilter}, a {@link LowerCaseFilter} and a {@link StopFilter}. */
- TokenStream* tokenStream(const TCHAR* fieldName, CL_NS(util)::Reader* reader);
- TokenStream* tokenStream(const TCHAR* fieldName, CL_NS(util)::Reader* reader, bool deleteReader);
- TokenStream* reusableTokenStream(const TCHAR* fieldName, CL_NS(util)::Reader* reader);
-};
-
-CL_NS_END2
-#endif
-