mirror of https://github.com/apache/lucene.git
LUCENE-6640: Add missing javadocs.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1688723 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
845944c446
commit
1ee28326db
|
@ -26,6 +26,9 @@ import org.apache.lucene.util.Bits;
|
|||
/** A producer of {@link Bits} per segment. */
|
||||
public abstract class BitsProducer {
|
||||
|
||||
/** Sole constructor, typically invoked by sub-classes. */
|
||||
protected BitsProducer() {}
|
||||
|
||||
/** Return {@link Bits} for the given leaf. The returned instance must
|
||||
* be non-null and have a {@link Bits#length() length} equal to
|
||||
* {@link LeafReader#maxDoc() maxDoc}. */
|
||||
|
|
Loading…
Reference in New Issue