add --shared
[pylucene.git] / lucene-java-3.4.0 / lucene / contrib / xml-query-parser / src / java / org / apache / lucene / xmlparser / QueryBuilderFactory.java
1 /*
2  * Created on 25-Jan-2006
3  */
4 package org.apache.lucene.xmlparser;
5
6 import java.util.HashMap;
7
8 import org.apache.lucene.search.Query;
9 import org.w3c.dom.Element;
10 /**
11  * Licensed to the Apache Software Foundation (ASF) under one or more
12  * contributor license agreements.  See the NOTICE file distributed with
13  * this work for additional information regarding copyright ownership.
14  * The ASF licenses this file to You under the Apache License, Version 2.0
15  * (the "License"); you may not use this file except in compliance with
16  * the License.  You may obtain a copy of the License at
17  *
18  *     http://www.apache.org/licenses/LICENSE-2.0
19  *
20  * Unless required by applicable law or agreed to in writing, software
21  * distributed under the License is distributed on an "AS IS" BASIS,
22  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23  * See the License for the specific language governing permissions and
24  * limitations under the License.
25  */
26
27 /**
28  * 
29  */
30 public class QueryBuilderFactory implements QueryBuilder {
31
32         HashMap<String,QueryBuilder> builders=new HashMap<String,QueryBuilder>();
33         
34         public Query getQuery(Element n) throws ParserException {
35                 QueryBuilder builder= builders.get(n.getNodeName());
36                 if(builder==null)
37                 {
38                         throw new ParserException("No QueryObjectBuilder defined for node "+n.getNodeName()); 
39                 }
40                 return builder.getQuery(n); 
41         }
42         public void addBuilder(String nodeName,QueryBuilder builder)
43         {
44                 builders.put(nodeName,builder);
45         }
46         public QueryBuilder getQueryBuilder(String nodeName)
47         {
48                 return builders.get(nodeName);          
49         }
50         
51 }