mirror of https://github.com/apache/lucene.git
fix javadocs
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1147887 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
07bfe50eda
commit
4af23c6d84
|
@ -70,8 +70,7 @@ import java.util.*;
|
||||||
* <h3>Initial Usage</h3>
|
* <h3>Initial Usage</h3>
|
||||||
* <p/>
|
* <p/>
|
||||||
* This class has lots of options to try to make it efficient and flexible.
|
* This class has lots of options to try to make it efficient and flexible.
|
||||||
* See the body of {@link #main main()} below in the source for real code, or
|
* The simplest possible usage is as follows. The bold
|
||||||
* if you want pseudo code, the simplest possible usage is as follows. The bold
|
|
||||||
* fragment is specific to this class.
|
* fragment is specific to this class.
|
||||||
* <p/>
|
* <p/>
|
||||||
* <pre class="prettyprint">
|
* <pre class="prettyprint">
|
||||||
|
@ -837,7 +836,7 @@ public final class MoreLikeThis {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see #retrieveInterestingTerms(java.io.Reader)
|
* @see #retrieveInterestingTerms(java.io.Reader, String)
|
||||||
*/
|
*/
|
||||||
public String[] retrieveInterestingTerms(int docNum) throws IOException {
|
public String[] retrieveInterestingTerms(int docNum) throws IOException {
|
||||||
ArrayList<Object> al = new ArrayList<Object>(maxQueryTerms);
|
ArrayList<Object> al = new ArrayList<Object>(maxQueryTerms);
|
||||||
|
@ -860,7 +859,7 @@ public final class MoreLikeThis {
|
||||||
* @param r the source document
|
* @param r the source document
|
||||||
* @param fieldName field passed to analyzer to use when analyzing the content
|
* @param fieldName field passed to analyzer to use when analyzing the content
|
||||||
* @return the most interesting words in the document
|
* @return the most interesting words in the document
|
||||||
* @see #retrieveTerms(java.io.Reader)
|
* @see #retrieveTerms(java.io.Reader, String)
|
||||||
* @see #setMaxQueryTerms
|
* @see #setMaxQueryTerms
|
||||||
*/
|
*/
|
||||||
public String[] retrieveInterestingTerms(Reader r, String fieldName) throws IOException {
|
public String[] retrieveInterestingTerms(Reader r, String fieldName) throws IOException {
|
||||||
|
|
Loading…
Reference in New Issue