oops... IDEA lied to me - adding back import

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150038 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2003-09-16 21:00:26 +00:00
parent f4107e810e
commit f504aba39b
1 changed files with 4 additions and 3 deletions

View File

@ -58,6 +58,7 @@ import java.util.Enumeration;
import java.util.List;
import java.util.ArrayList;
import org.apache.lucene.index.IndexReader; // for javadoc
import org.apache.lucene.search.Hits; // for javadoc
/** Documents are the unit of indexing and search.
*
@ -93,9 +94,9 @@ public final class Document implements java.io.Serializable {
* <p>The default value is 1.0.
*
* <p>Note: This value is not stored directly with the document in the index.
* Documents returned from {@link IndexReader#document(int)} and {@link
* Hits#doc(int)} may thus not have the same value present as when this
* document was indexed.
* Documents returned from {@link IndexReader#document(int)} and
* {@link Hits#doc(int)} may thus not have the same value present as when
* this document was indexed.
*
* @see #setBoost(float)
*/