add a bit of javadocs to the constructor

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@882173 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Grant Ingersoll 2009-11-19 15:20:10 +00:00
parent 52283c86f8
commit 14ea535151
1 changed files with 7 additions and 1 deletions

View File

@ -41,7 +41,13 @@ public abstract class QParser {
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;