add --shared
[pylucene.git] / lucene-java-3.4.0 / lucene / contrib / queryparser / src / java / org / apache / lucene / queryParser / standard / config / DefaultPhraseSlopAttributeImpl.java
1 package org.apache.lucene.queryParser.standard.config;
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.queryParser.core.config.AbstractQueryConfig;
21 import org.apache.lucene.queryParser.core.config.ConfigAttribute;
22 import org.apache.lucene.queryParser.core.config.QueryConfigHandler;
23 import org.apache.lucene.queryParser.standard.config.StandardQueryConfigHandler.ConfigurationKeys;
24 import org.apache.lucene.queryParser.standard.processors.PhraseSlopQueryNodeProcessor;
25 import org.apache.lucene.util.AttributeImpl;
26
27 /**
28  * This attribute is used by {@link PhraseSlopQueryNodeProcessor} processor and
29  * must be defined in the {@link QueryConfigHandler}. This attribute tells the
30  * processor what is the default phrase slop when no slop is defined in a
31  * phrase. <br/>
32  * 
33  * @see org.apache.lucene.queryParser.standard.config.DefaultOperatorAttribute
34  * 
35  * @deprecated
36  * 
37  */
38 @Deprecated
39 public class DefaultPhraseSlopAttributeImpl extends AttributeImpl 
40                                 implements DefaultPhraseSlopAttribute, ConfigAttribute {
41
42   private static final long serialVersionUID = -2104763012527049527L;
43   
44   private AbstractQueryConfig config;
45
46   { enableBackwards = false; }
47   
48   public DefaultPhraseSlopAttributeImpl() {}
49
50   public void setDefaultPhraseSlop(int defaultPhraseSlop) {
51     this.config.set(ConfigurationKeys.PHRASE_SLOP, defaultPhraseSlop);
52   }
53
54   public int getDefaultPhraseSlop() {
55     return config.get(ConfigurationKeys.PHRASE_SLOP, 0);
56   }
57
58   @Override
59   public void clear() {
60     throw new UnsupportedOperationException();
61   }
62
63   @Override
64   public void copyTo(AttributeImpl target) {
65     throw new UnsupportedOperationException();
66   }
67
68   @Override
69   public boolean equals(Object other) {
70
71     if (other instanceof DefaultPhraseSlopAttributeImpl
72         && ((DefaultPhraseSlopAttributeImpl) other).getDefaultPhraseSlop() == getDefaultPhraseSlop()) {
73
74       return true;
75
76     }
77
78     return false;
79
80   }
81
82   @Override
83   public int hashCode() {
84     return Integer.valueOf(getDefaultPhraseSlop()).hashCode();
85   }
86
87   @Override
88   public String toString() {
89     return "<defaultPhraseSlop defaultPhraseSlop=" + getDefaultPhraseSlop()
90         + "/>";
91   }
92   
93   public void setQueryConfigHandler(AbstractQueryConfig config) {
94     this.config = config;
95     
96     if (!config.has(ConfigurationKeys.PHRASE_SLOP)) {
97       setDefaultPhraseSlop(0);
98     }
99     
100   }
101
102 }