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