fix javadocs

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1186978 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2011-10-20 18:22:12 +00:00
parent 32866e48bf
commit 18f75faac9
1 changed files with 5 additions and 2 deletions

View File

@ -147,7 +147,7 @@ public abstract class TermsEnum {
* call this when the enum is unpositioned. This method * call this when the enum is unpositioned. This method
* will not return null. * will not return null.
* *
* @param liveDocs set bits are documents that should not * @param liveDocs unset bits are documents that should not
* be returned * be returned
* @param reuse pass a prior DocsEnum for possible reuse */ * @param reuse pass a prior DocsEnum for possible reuse */
public abstract DocsEnum docs(Bits liveDocs, DocsEnum reuse) throws IOException; public abstract DocsEnum docs(Bits liveDocs, DocsEnum reuse) throws IOException;
@ -155,7 +155,10 @@ public abstract class TermsEnum {
/** Get {@link DocsAndPositionsEnum} for the current term. /** Get {@link DocsAndPositionsEnum} for the current term.
* Do not call this when the enum is unpositioned. * Do not call this when the enum is unpositioned.
* This method will only return null if positions were * This method will only return null if positions were
* not indexed into the postings by this codec. */ * not indexed into the postings by this codec.
* @param liveDocs unset bits are documents that should not
* be returned
* @param reuse pass a prior DocsAndPositionsEnum for possible reuse */
public abstract DocsAndPositionsEnum docsAndPositions(Bits liveDocs, DocsAndPositionsEnum reuse) throws IOException; public abstract DocsAndPositionsEnum docsAndPositions(Bits liveDocs, DocsAndPositionsEnum reuse) throws IOException;
/** /**