add --shared
[pylucene.git] / lucene-java-3.4.0 / lucene / contrib / xml-query-parser / src / java / org / apache / lucene / xmlparser / builders / BoostingTermBuilder.java
1 package org.apache.lucene.xmlparser.builders;
2
3 import org.apache.lucene.index.Term;
4 import org.apache.lucene.search.spans.SpanQuery;
5 import org.apache.lucene.search.payloads.PayloadTermQuery;
6 import org.apache.lucene.search.payloads.AveragePayloadFunction;
7 import org.apache.lucene.xmlparser.DOMUtils;
8 import org.apache.lucene.xmlparser.ParserException;
9 import org.w3c.dom.Element;
10
11 /**
12  * Licensed to the Apache Software Foundation (ASF) under one or more
13  * contributor license agreements.  See the NOTICE file distributed with
14  * this work for additional information regarding copyright ownership.
15  * The ASF licenses this file to You under the Apache License, Version 2.0
16  * (the "License"); you may not use this file except in compliance with
17  * the License.  You may obtain a copy of the License at
18  *
19  *     http://www.apache.org/licenses/LICENSE-2.0
20  *
21  * Unless required by applicable law or agreed to in writing, software
22  * distributed under the License is distributed on an "AS IS" BASIS,
23  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24  * See the License for the specific language governing permissions and
25  * limitations under the License.
26  */
27
28 /**
29  * 
30  */
31 public class BoostingTermBuilder extends SpanBuilderBase
32 {
33
34         public SpanQuery getSpanQuery(Element e) throws ParserException
35         {
36                 String fieldName=DOMUtils.getAttributeWithInheritanceOrFail(e,"fieldName");
37                 String value=DOMUtils.getNonBlankTextOrFail(e);
38                 PayloadTermQuery btq = new PayloadTermQuery(new Term(fieldName,value), new AveragePayloadFunction());
39
40                 btq.setBoost(DOMUtils.getAttribute(e,"boost",1.0f));
41                 return btq;
42
43         }
44
45 }