minor javadoc fixup

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150085 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2003-10-09 00:11:54 +00:00
parent 2216c0dee3
commit 0e60607de8
2 changed files with 2 additions and 13 deletions

View File

@ -347,9 +347,6 @@ class RussianStemmer
/** /**
* Finds ending among given ending class and returns the length of ending found(0, if not found). * Finds ending among given ending class and returns the length of ending found(0, if not found).
* Creation date: (17/03/2002 8:18:34 PM) * Creation date: (17/03/2002 8:18:34 PM)
* @return int
* @param word java.lang.StringBuffer
* @param theEnding char[]
*/ */
private int findEnding(StringBuffer stemmingZone, int startIndex, char[][] theEndingClass) private int findEnding(StringBuffer stemmingZone, int startIndex, char[][] theEndingClass)
{ {
@ -390,9 +387,6 @@ class RussianStemmer
/** /**
* Finds the ending among the given class of endings and removes it from stemming zone. * Finds the ending among the given class of endings and removes it from stemming zone.
* Creation date: (17/03/2002 8:18:34 PM) * Creation date: (17/03/2002 8:18:34 PM)
* @return boolean
* @param word java.lang.StringBuffer
* @param theEnding char[]
*/ */
private boolean findAndRemoveEnding(StringBuffer stemmingZone, char[][] theEndingClass) private boolean findAndRemoveEnding(StringBuffer stemmingZone, char[][] theEndingClass)
{ {
@ -411,9 +405,6 @@ class RussianStemmer
* Finds the ending among the given class of endings, then checks if this ending was * Finds the ending among the given class of endings, then checks if this ending was
* preceded by any of given predessors, and if so, removes it from stemming zone. * preceded by any of given predessors, and if so, removes it from stemming zone.
* Creation date: (17/03/2002 8:18:34 PM) * Creation date: (17/03/2002 8:18:34 PM)
* @return boolean
* @param word java.lang.StringBuffer
* @param theEnding char[]
*/ */
private boolean findAndRemoveEnding(StringBuffer stemmingZone, private boolean findAndRemoveEnding(StringBuffer stemmingZone,
char[][] theEndingClass, char[][] thePredessors) char[][] theEndingClass, char[][] thePredessors)
@ -442,8 +433,6 @@ class RussianStemmer
/** /**
* Marks positions of RV, R1 and R2 in a given word. * Marks positions of RV, R1 and R2 in a given word.
* Creation date: (16/03/2002 3:40:11 PM) * Creation date: (16/03/2002 3:40:11 PM)
* @return int
* @param word java.lang.String
*/ */
private void markPositions(String word) private void markPositions(String word)
{ {

View File

@ -103,7 +103,7 @@ public class MultiFieldQueryParser extends QueryParser
* @param query Query string to parse * @param query Query string to parse
* @param fields Fields to search on * @param fields Fields to search on
* @param analyzer Analyzer to use * @param analyzer Analyzer to use
* @throws ParserException if query parsing fails * @throws ParseException if query parsing fails
* @throws TokenMgrError if query parsing fails * @throws TokenMgrError if query parsing fails
*/ */
public static Query parse(String query, String[] fields, Analyzer analyzer) public static Query parse(String query, String[] fields, Analyzer analyzer)
@ -145,7 +145,7 @@ public class MultiFieldQueryParser extends QueryParser
* @param fields Fields to search on * @param fields Fields to search on
* @param flags Flags describing the fields * @param flags Flags describing the fields
* @param analyzer Analyzer to use * @param analyzer Analyzer to use
* @throws ParserException if query parsing fails * @throws ParseException if query parsing fails
* @throws TokenMgrError if query parsing fails * @throws TokenMgrError if query parsing fails
*/ */
public static Query parse(String query, String[] fields, int[] flags, public static Query parse(String query, String[] fields, int[] flags,