Author: yonik
Date: Fri Sep  7 19:39:42 2007
New Revision: 573774

URL: http://svn.apache.org/viewvc?rev=573774&view=rev
Log:
fix javadoc issues

Modified:
    lucene/solr/trunk/src/java/org/apache/solr/request/SimpleFacets.java

Modified: lucene/solr/trunk/src/java/org/apache/solr/request/SimpleFacets.java
URL: 
http://svn.apache.org/viewvc/lucene/solr/trunk/src/java/org/apache/solr/request/SimpleFacets.java?rev=573774&r1=573773&r2=573774&view=diff
==============================================================================
--- lucene/solr/trunk/src/java/org/apache/solr/request/SimpleFacets.java 
(original)
+++ lucene/solr/trunk/src/java/org/apache/solr/request/SimpleFacets.java Fri 
Sep  7 19:39:42 2007
@@ -79,7 +79,7 @@
    * @see #getFacetQueryCounts
    * @see #getFacetFieldCounts
    * @see #getFacetDateCounts
-   * @see SolrParams#FACET
+   * @see FacetParams#FACET
    * @return a NamedList of Facet Count info or null
    */
   public NamedList getFacetCounts() {
@@ -106,7 +106,7 @@
    * Returns a list of facet counts for each of the facet queries 
    * specified in the params
    *
-   * @see SolrParams#FACET_QUERY
+   * @see FacetParams#FACET_QUERY
    */
   public NamedList getFacetQueryCounts() throws IOException,ParseException {
 
@@ -165,7 +165,7 @@
    * Returns a list of value constraints and the associated facet counts 
    * for each facet field specified in the params.
    *
-   * @see SolrParams#FACET_FIELD
+   * @see FacetParams#FACET_FIELD
    * @see #getFieldMissingCount
    * @see #getFacetTermEnumCounts
    */
@@ -186,7 +186,7 @@
    * Returns a count of the documents in the set which do not have any 
    * terms for for the specified field.
    *
-   * @see SolrParams#FACET_MISSING
+   * @see FacetParams#FACET_MISSING
    */
   public static int getFieldMissingCount(SolrIndexSearcher searcher, DocSet 
docs, String fieldName)
     throws IOException {
@@ -321,9 +321,9 @@
    * This method uses the FilterCache to get the intersection count between 
<code>docs</code>
    * and the DocSet for each term in the filter.
    *
-   * @see SolrParams#FACET_LIMIT
-   * @see SolrParams#FACET_ZEROS
-   * @see SolrParams#FACET_MISSING
+   * @see FacetParams#FACET_LIMIT
+   * @see FacetParams#FACET_ZEROS
+   * @see FacetParams#FACET_MISSING
    */
   public NamedList getFacetTermEnumCounts(SolrIndexSearcher searcher, DocSet 
docs, String field, int offset, int limit, int mincount, boolean missing, 
boolean sort, String prefix)
     throws IOException {
@@ -419,7 +419,7 @@
    * for each facet date field, range, and interval specified in the
    * SolrParams
    *
-   * @see SolrParams#FACET_DATE
+   * @see FacetParams#FACET_DATE
    */
   public NamedList getFacetDateCounts()
           throws IOException {
@@ -545,7 +545,6 @@
 
   /**
    * Macro for getting the numDocs of a ConstantScoreRangeQuery over docs
-   * @see docs
    * @see SolrIndexSearcher#numDocs
    * @see ConstantScoreRangeQuery
    */


Reply via email to