mirror of https://github.com/apache/lucene.git
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:
parent
52283c86f8
commit
14ea535151
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue