LUCENE-2144: add javadoc warning to AbstractAllTermDocs

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@889440 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2009-12-10 22:03:30 +00:00
parent 00eadcb986
commit 3501d927de
1 changed files with 7 additions and 0 deletions

View File

@ -19,6 +19,13 @@ package org.apache.lucene.index;
import java.io.IOException;
/** Base class for enumerating all but deleted docs.
*
* <p>NOTE: this class is meant only to be used internally
* by Lucene; it's only public so it can be shared across
* packages. This means the API is freely subject to
* change, and, the class could be removed entirely, in any
* Lucene release. Use directly at your own risk! */
public abstract class AbstractAllTermDocs implements TermDocs {
protected int maxDoc;