Author: gsingers
Date: Thu Nov 19 15:20:10 2009
New Revision: 882173

URL: http://svn.apache.org/viewvc?rev=882173&view=rev
Log:
add a bit of javadocs to the constructor

Modified:
    lucene/solr/trunk/src/java/org/apache/solr/search/QParser.java

Modified: lucene/solr/trunk/src/java/org/apache/solr/search/QParser.java
URL: 
http://svn.apache.org/viewvc/lucene/solr/trunk/src/java/org/apache/solr/search/QParser.java?rev=882173&r1=882172&r2=882173&view=diff
==============================================================================
--- lucene/solr/trunk/src/java/org/apache/solr/search/QParser.java (original)
+++ lucene/solr/trunk/src/java/org/apache/solr/search/QParser.java Thu Nov 19 
15:20:10 2009
@@ -41,7 +41,13 @@
 
   protected Query query;
 
-
+  /**
+   * Constructor for the QParser
+   * @param qstr The whole query string
+   * @param localParams The set of parameters that are specific to this 
QParser.  See http://wiki.apache.org/solr/LocalParams
+   * @param params The rest of the {...@link 
org.apache.solr.common.params.SolrParams}
+   * @param req The original {...@link 
org.apache.solr.request.SolrQueryRequest}.
+   */
   public QParser(String qstr, SolrParams localParams, SolrParams params, 
SolrQueryRequest req) {
     this.qstr = qstr;
     this.localParams = localParams;


Reply via email to