mirror of https://github.com/apache/lucene.git
fix javadoc/javadoc links in benchmark
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@808214 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c593328eb0
commit
471ab5e245
|
@ -34,7 +34,7 @@ import org.apache.lucene.benchmark.byTask.utils.Config;
|
|||
/**
|
||||
* Represents content from a specified source, such as TREC, Reuters etc. A
|
||||
* {@link ContentSource} is responsible for creating {@link DocData} objects for
|
||||
* its documents to be consumed by {@link ToDeleteDocMaker}. It also keeps track
|
||||
* its documents to be consumed by {@link DocMaker}. It also keeps track
|
||||
* of various statistics, such as how many documents were generated, size in
|
||||
* bytes etc.
|
||||
* <p>
|
||||
|
|
|
@ -23,7 +23,7 @@ import java.text.DateFormat;
|
|||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* HTML Parsing Interfacew for test purposes
|
||||
* HTML Parsing Interface for test purposes
|
||||
*/
|
||||
public interface HTMLParser {
|
||||
|
||||
|
@ -44,7 +44,7 @@ public interface HTMLParser {
|
|||
/**
|
||||
* Parse the inputText and return DocData.
|
||||
* @param inputText the html text to parse.
|
||||
* @see #parse(String, Date, Reader, DateFormat)
|
||||
* @see {@link #parse(String, Date, Reader, DateFormat)}
|
||||
*/
|
||||
public DocData parse(DocData docData, String name, Date date, StringBuffer inputText, DateFormat dateFormat) throws IOException, InterruptedException;
|
||||
|
||||
|
|
|
@ -17,14 +17,7 @@ package org.apache.lucene.benchmark.byTask.feeds;
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
import org.apache.lucene.benchmark.byTask.utils.Config;
|
||||
import org.apache.lucene.document.Document;
|
||||
import org.apache.lucene.document.Field;
|
||||
import org.apache.lucene.document.Field.Index;
|
||||
import org.apache.lucene.document.Field.Store;
|
||||
import org.apache.lucene.document.Field.TermVector;
|
||||
|
||||
/**
|
||||
* A DocMaker reading one line at a time as a Document from a single file. This
|
||||
|
@ -34,7 +27,8 @@ import org.apache.lucene.document.Field.TermVector;
|
|||
* The expected format of each line is (arguments are separated by <TAB>):
|
||||
* <i>title, date, body</i>. If a line is read in a different format, a
|
||||
* {@link RuntimeException} will be thrown. In general, you should use this doc
|
||||
* maker with files that were created with {@link WriteLineDocTask}.<br>
|
||||
* maker with files that were created with
|
||||
* {@link org.apache.lucene.benchmark.byTask.tasks.WriteLineDocTask}.<br>
|
||||
* <br>
|
||||
* Config properties:
|
||||
* <ul>
|
||||
|
|
|
@ -20,7 +20,7 @@ import java.io.IOException;
|
|||
*/
|
||||
|
||||
/**
|
||||
* Creates the same document each time {@link #getNextDocData()} is called.
|
||||
* Creates the same document each time {@link #getNextDocData(DocData)} is called.
|
||||
*/
|
||||
public class SingleDocSource extends ContentSource {
|
||||
|
||||
|
|
Loading…
Reference in New Issue