LUCENE-3030: Fixed some javadoc warnings

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1160116 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Christopher John Male 2011-08-22 05:57:40 +00:00
parent cd84fe0366
commit 3823977899
4 changed files with 5 additions and 5 deletions

View File

@ -299,7 +299,7 @@ public class CheckIndex {
this.verbose = verbose;
}
/** Set infoStream where messages should go. See {@link setInfoStream(PrintStream,boolean)}. */
/** Set infoStream where messages should go. See {@link #setInfoStream(PrintStream,boolean)}. */
public void setInfoStream(PrintStream out) {
setInfoStream(out, false);
}

View File

@ -63,7 +63,7 @@ import org.apache.lucene.util.fst.Util;
* terms to variable length blocks according to how they
* share prefixes. The terms index is a prefix trie
* whose leaves are term blocks. The advantage of this
* approach is that {@link #seekExact} is often able to
* approach is that seekExact is often able to
* determine a term cannot exist without doing any IO, and
* intersection with Automata is very fast. Note that this
* terms dictionary has it's own fixed terms index (ie, it
@ -80,7 +80,7 @@ import org.apache.lucene.util.fst.Util;
* but with added logic to break up too-large blocks of all
* terms sharing a given prefix into smaller ones.</p>
*
* <p>Use {@link CheckIndex} with the <code>-verbose</code>
* <p>Use {@link org.apache.lucene.index.CheckIndex} with the <code>-verbose</code>
* option to see summary statistics on the blocks in the
* dictionary.
*

View File

@ -86,7 +86,7 @@ public final class FuzzyTermsEnum extends TermsEnum {
* After calling the constructor the enumeration is already pointing to the first
* valid term if such a term exists.
*
* @param tenum Delivers terms.
* @param terms Delivers terms.
* @param atts {@link AttributeSource} created by the rewrite method of {@link MultiTermQuery}
* thats contains information about competitive boosts during rewrite. It is also used
* to cache DFAs between segment transitions.

View File

@ -85,7 +85,7 @@ public class Builder<T> {
/**
* Instantiates an FST/FSA builder without any pruning. A shortcut
* to {@link #Builder(FST.INPUT_TYPE, int, int, boolean, boolean, int, Outputs)} with
* to {@link #Builder(FST.INPUT_TYPE, int, int, boolean, boolean, int, Outputs, FreezeTail)} with
* pruning options turned off.
*/
public Builder(FST.INPUT_TYPE inputType, Outputs<T> outputs) {