improve javadocs

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1533875 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2013-10-20 10:49:41 +00:00
parent 73d1bed633
commit b70a49d9d3
1 changed files with 4 additions and 4 deletions

View File

@ -31,12 +31,12 @@ import org.apache.lucene.facet.params.FacetIndexingParams;
import org.apache.lucene.facet.taxonomy.CategoryPath;
import org.apache.lucene.util.BytesRef;
/** Add instances of this to your Document if you intend to
/** Use this to index facets if you intend to
* use {@link SortedSetDocValuesAccumulator} to count facets
* at search time. Note that this only supports flat
* facets (dimension + label). Add multiple instances of
* this to your document, one per dimension + label, and
* it's fine if a given dimension is multi-valued. */
* facets (dimension + label). Instantiate this class
* once, and then call {@link #addFields} to add the
* necessary fields to each {@link Document}. */
public class SortedSetDocValuesFacetFields extends FacetFields {