pylucene 3.5.0-3
[pylucene.git] / lucene-java-3.5.0 / lucene / contrib / queryparser / src / java / org / apache / lucene / queryParser / standard / package.html
1 <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
2 <!--
3  Licensed to the Apache Software Foundation (ASF) under one or more
4  contributor license agreements.  See the NOTICE file distributed with
5  this work for additional information regarding copyright ownership.
6  The ASF licenses this file to You under the Apache License, Version 2.0
7  (the "License"); you may not use this file except in compliance with
8  the License.  You may obtain a copy of the License at
9
10      http://www.apache.org/licenses/LICENSE-2.0
11
12  Unless required by applicable law or agreed to in writing, software
13  distributed under the License is distributed on an "AS IS" BASIS,
14  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  See the License for the specific language governing permissions and
16  limitations under the License.
17 -->
18 <html>
19 <head>
20    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
21 </head>
22 <body>
23
24 Contains the implementation of the Lucene query parser using the flexible query parser frameworks
25
26 <h2>Lucene Flexible Query Parser Implementation</h2>
27 <p>
28 The old Lucene query parser used to have only one class that performed 
29 all the parsing operations. In the new query parser structure, the 
30 parsing was divided in 3 steps: parsing (syntax), processing (semantic)
31 and building.
32 </p>
33 <p>
34 The classes contained in the package org.apache.lucene.queryParser.standard
35 are used to reproduce the same behavior as the old query parser.
36 </p>
37
38 <p>
39 Check <tt>org.apache.lucene.queryParser.standard.StandardQueryParser</tt> to quick start using the Lucene query parser. 
40 </p>
41
42 <p>
43 There are 2 wrapper classes that extends QueryParser and MultiFieldQueryParser.
44 The classes implement internally the new query parser structure. These 2 
45 classes are deprecated and should only be used when there is a need to use the
46 old query parser interface.  
47 </p>
48
49 </body>
50 </html>