JavaDoc warnings squashed.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1141689 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dawid Weiss 2011-06-30 19:52:31 +00:00
parent dab351a096
commit 796fa6def3
2 changed files with 4 additions and 3 deletions

View File

@ -62,14 +62,14 @@ public class MorfologikAnalyzer extends ReusableAnalyzerBase {
/**
* Creates a
* {@link ReusableAnalyzerBase.TokenStreamComponents}
* {@link org.apache.lucene.analysis.util.ReusableAnalyzerBase.TokenStreamComponents}
* which tokenizes all the text in the provided {@link Reader}.
*
* @param field ignored field name
* @param reader source of tokens
*
* @return A
* {@link ReusableAnalyzerBase.TokenStreamComponents}
* {@link org.apache.lucene.analysis.util.ReusableAnalyzerBase.TokenStreamComponents}
* built from an {@link StandardTokenizer} filtered with
* {@link StandardFilter} and {@link MorfologikFilter}.
*/

View File

@ -35,10 +35,11 @@ import org.apache.lucene.util.Version;
/**
* {@link TokenFilter} using Morfologik library.
* @see <a href="http://morfologik.blogspot.com/">Morfologik project page</a>
*
* MorfologikFilter contains a {@link MorphosyntacticTagAttribute}, which provides morphosyntactic
* annotations for produced lemmas. See the Morfologik documentation for details.
*
* @see <a href="http://morfologik.blogspot.com/">Morfologik project page</a>
*/
public class MorfologikFilter extends TokenFilter {