pylucene 3.5.0-3
[pylucene.git] / lucene-java-3.5.0 / lucene / contrib / queryparser / src / java / org / apache / lucene / queryParser / standard / config / MultiFieldAttributeImpl.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 java.util.Arrays;
21
22 import org.apache.lucene.queryParser.core.config.AbstractQueryConfig;
23 import org.apache.lucene.queryParser.core.config.ConfigAttribute;
24 import org.apache.lucene.queryParser.core.config.QueryConfigHandler;
25 import org.apache.lucene.queryParser.standard.config.StandardQueryConfigHandler.ConfigurationKeys;
26 import org.apache.lucene.queryParser.standard.processors.MultiFieldQueryNodeProcessor;
27 import org.apache.lucene.util.AttributeImpl;
28
29 /**
30  * This attribute is used by {@link MultiFieldQueryNodeProcessor} processor and
31  * must be defined in the {@link QueryConfigHandler}. This attribute tells the
32  * processor to which fields the terms in the query should be expanded. <br/>
33  * 
34  * @see org.apache.lucene.queryParser.standard.config.MultiFieldAttribute
35  * 
36  * @deprecated
37  * 
38  */
39 @Deprecated
40 public class MultiFieldAttributeImpl extends AttributeImpl
41                                 implements MultiFieldAttribute, ConfigAttribute {
42
43   private static final long serialVersionUID = -6809760312720049526L;
44   
45   private AbstractQueryConfig config;
46
47   { enableBackwards = false; }
48   
49   public MultiFieldAttributeImpl() {
50     // empty constructor
51   }
52
53   public void setFields(CharSequence[] fields) {
54     config.set(ConfigurationKeys.MULTI_FIELDS, fields);
55   }
56
57   public CharSequence[] getFields() {
58     return config.get(ConfigurationKeys.MULTI_FIELDS);
59   }
60
61   @Override
62   public void clear() {
63     throw new UnsupportedOperationException();
64   }
65
66   @Override
67   public void copyTo(AttributeImpl target) {
68     throw new UnsupportedOperationException();
69   }
70
71   @Override
72   public boolean equals(Object other) {
73
74     if (other instanceof MultiFieldAttributeImpl) {
75         MultiFieldAttributeImpl fieldsAttr = (MultiFieldAttributeImpl) other;
76
77       return Arrays.equals(getFields(), fieldsAttr.getFields());
78
79     }
80
81     return false;
82
83   }
84
85   @Override
86   public int hashCode() {
87     return Arrays.hashCode(getFields());
88   }
89
90   @Override
91   public String toString() {
92     return "<fieldsAttribute fields=" + Arrays.toString(getFields()) + "/>";
93   }
94   
95   public void setQueryConfigHandler(AbstractQueryConfig config) {
96     this.config = config;
97   }
98
99 }