pylucene 3.5.0-3
[pylucene.git] / lucene-java-3.5.0 / lucene / contrib / queryparser / src / java / org / apache / lucene / queryParser / precedence / PrecedenceQueryParser.java
1 package org.apache.lucene.queryParser.precedence;
2
3 /**
4  * Licensed to the Apache Software Foundation (ASF) under one or more
5  * contributor license agreements.  See the NOTICE file distributed with
6  * this work for additional information regarding copyright ownership.
7  * The ASF licenses this file to You under the Apache License, Version 2.0
8  * (the "License"); you may not use this file except in compliance with
9  * the License.  You may obtain a copy of the License at
10  *
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 import org.apache.lucene.analysis.Analyzer;
21 import org.apache.lucene.queryParser.precedence.processors.PrecedenceQueryNodeProcessorPipeline;
22 import org.apache.lucene.queryParser.standard.StandardQueryParser;
23 import org.apache.lucene.queryParser.standard.processors.StandardQueryNodeProcessorPipeline;
24
25 /**
26  * <p>
27  * This query parser works exactly as the standard query parser ( {@link StandardQueryParser} ), 
28  * except that it respect the boolean precedence, so &lt;a AND b OR c AND d&gt; is parsed to &lt;(+a +b) (+c +d)&gt;
29  * instead of &lt;+a +b +c +d&gt;.
30  * </p>
31  * <p>
32  * EXPERT: This class extends {@link StandardQueryParser}, but uses {@link PrecedenceQueryNodeProcessorPipeline}
33  * instead of {@link StandardQueryNodeProcessorPipeline} to process the query tree.
34  * </p>
35  * 
36  * @see StandardQueryParser
37  */
38 public class PrecedenceQueryParser extends StandardQueryParser {
39   
40   /**
41    * @see StandardQueryParser#StandardQueryParser()
42    */
43   public PrecedenceQueryParser() {
44     setQueryNodeProcessor(new PrecedenceQueryNodeProcessorPipeline(getQueryConfigHandler()));
45   }
46   
47   /**
48    * @see StandardQueryParser#StandardQueryParser(Analyzer)
49    */
50   public PrecedenceQueryParser(Analyzer analyer) {
51     super(analyer);
52     
53     setQueryNodeProcessor(new PrecedenceQueryNodeProcessorPipeline(getQueryConfigHandler()));
54     
55   }
56
57 }