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:
Mark Robert Miller 2009-08-26 22:49:48 +00:00
parent c593328eb0
commit 471ab5e245
4 changed files with 6 additions and 12 deletions

View File

@ -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>

View File

@ -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;

View File

@ -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 &lt;TAB&gt;):
* <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>

View File

@ -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 {