mirror of https://github.com/apache/lucene.git
Fixed JavaDoc - spelling issues in @param
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@880727 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b66b6bbd5a
commit
ba4769d418
|
@ -131,12 +131,10 @@ public final class BrazilianAnalyzer extends Analyzer {
|
|||
* lucene compatibility version
|
||||
* @param stopwords
|
||||
* a stopword set
|
||||
* @param stemExclutionSet
|
||||
* a stemming exclusion set
|
||||
*/
|
||||
public BrazilianAnalyzer(Version matchVersion, Set<?> stopset,
|
||||
public BrazilianAnalyzer(Version matchVersion, Set<?> stopwords,
|
||||
Set<?> stemExclusionSet) {
|
||||
this(matchVersion, stopset);
|
||||
this(matchVersion, stopwords);
|
||||
excltable = CharArraySet.unmodifiableSet(CharArraySet
|
||||
.copy(stemExclusionSet));
|
||||
}
|
||||
|
|
|
@ -104,7 +104,7 @@ public final class CzechAnalyzer extends Analyzer {
|
|||
/**
|
||||
* Builds an analyzer with the given stop words and stemming exclusion words
|
||||
*
|
||||
* @param matchversion
|
||||
* @param matchVersion
|
||||
* lucene compatibility version
|
||||
* @param stopwords
|
||||
* a stopword set
|
||||
|
|
|
@ -111,7 +111,7 @@ public class GermanAnalyzer extends Analyzer {
|
|||
/**
|
||||
* Builds an analyzer with the given stop words
|
||||
*
|
||||
* @param matchversion
|
||||
* @param matchVersion
|
||||
* lucene compatibility version
|
||||
* @param stopwords
|
||||
* a stopword set
|
||||
|
@ -123,11 +123,11 @@ public class GermanAnalyzer extends Analyzer {
|
|||
/**
|
||||
* Builds an analyzer with the given stop words
|
||||
*
|
||||
* @param matchversion
|
||||
* @param matchVersion
|
||||
* lucene compatibility version
|
||||
* @param stopwords
|
||||
* a stopword set
|
||||
* @param stemExclutionSet
|
||||
* @param stemExclusionSet
|
||||
* a stemming exclusion set
|
||||
*/
|
||||
public GermanAnalyzer(Version matchVersion, Set<?> stopwords, Set<?> stemExclusionSet) {
|
||||
|
|
|
@ -87,7 +87,7 @@ public final class GreekAnalyzer extends Analyzer
|
|||
/**
|
||||
* Builds an analyzer with the given stop words
|
||||
*
|
||||
* @param matchversion
|
||||
* @param matchVersion
|
||||
* lucene compatibility version
|
||||
* @param stopwords
|
||||
* a stopword set
|
||||
|
|
|
@ -120,7 +120,7 @@ public final class PersianAnalyzer extends Analyzer {
|
|||
/**
|
||||
* Builds an analyzer with the given stop words
|
||||
*
|
||||
* @param matchversion
|
||||
* @param matchVersion
|
||||
* lucene compatibility version
|
||||
* @param stopwords
|
||||
* a stopword set
|
||||
|
|
|
@ -64,7 +64,7 @@ public final class FrenchAnalyzer extends Analyzer {
|
|||
* Extended list of typical French stopwords.
|
||||
* @deprecated use {@link #getDefaultStopSet()} instead
|
||||
*/
|
||||
// TODO make this final in 3.1
|
||||
// TODO make this private in 3.1
|
||||
public final static String[] FRENCH_STOP_WORDS = {
|
||||
"a", "afin", "ai", "ainsi", "après", "attendu", "au", "aujourd", "auquel", "aussi",
|
||||
"autre", "autres", "aux", "auxquelles", "auxquels", "avait", "avant", "avec", "avoir",
|
||||
|
@ -126,7 +126,7 @@ public final class FrenchAnalyzer extends Analyzer {
|
|||
/**
|
||||
* Builds an analyzer with the given stop words
|
||||
*
|
||||
* @param matchversion
|
||||
* @param matchVersion
|
||||
* lucene compatibility version
|
||||
* @param stopwords
|
||||
* a stopword set
|
||||
|
@ -138,7 +138,7 @@ public final class FrenchAnalyzer extends Analyzer {
|
|||
/**
|
||||
* Builds an analyzer with the given stop words
|
||||
*
|
||||
* @param matchversion
|
||||
* @param matchVersion
|
||||
* lucene compatibility version
|
||||
* @param stopwords
|
||||
* a stopword set
|
||||
|
|
|
@ -85,7 +85,7 @@ public final class RussianAnalyzer extends Analyzer
|
|||
/**
|
||||
* Builds an analyzer with the given stop words
|
||||
*
|
||||
* @param matchversion
|
||||
* @param matchVersion
|
||||
* lucene compatibility version
|
||||
* @param stopwords
|
||||
* a stopword set
|
||||
|
|
Loading…
Reference in New Issue