From 1169caa51b4f7d799aca10db34df9aaae940df6d Mon Sep 17 00:00:00 2001 From: Grant Ingersoll Date: Mon, 17 Aug 2009 21:24:47 +0000 Subject: [PATCH] javadocs git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@805149 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/solr/util/SolrPluginUtils.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/java/org/apache/solr/util/SolrPluginUtils.java b/src/java/org/apache/solr/util/SolrPluginUtils.java index 32bc5980bb6..0763d72ce98 100644 --- a/src/java/org/apache/solr/util/SolrPluginUtils.java +++ b/src/java/org/apache/solr/util/SolrPluginUtils.java @@ -893,9 +893,15 @@ public class SolrPluginUtils { * The optional param "ids" is populated with the lucene document id * for each SolrDocument. * + * @param docs The {@link org.apache.solr.search.DocList} to convert + * @param searcher The {@link org.apache.solr.search.SolrIndexSearcher} to use to load the docs from the Lucene index + * @param fields The names of the Fields to load + * @param ids A map to store the ids of the docs + * @return The new {@link org.apache.solr.common.SolrDocumentList} containing all the loaded docs + * @throws java.io.IOException if there was a problem loading the docs * @since solr 1.4 */ - public static SolrDocumentList docListToSolrDocumentList( + public static SolrDocumentList docListToSolrDocumentList( DocList docs, SolrIndexSearcher searcher, Set fields,