pylucene 3.5.0-3
[pylucene.git] / lucene-java-3.5.0 / lucene / contrib / queryparser / src / java / org / apache / lucene / queryParser / core / config / ConfigAttribute.java
1 package org.apache.lucene.queryParser.core.config;
2
3 import org.apache.lucene.util.Attribute;
4
5 /**
6  * This class should be used by every class that extends {@link Attribute} to
7  * configure a {@link QueryConfigHandler}. It will be removed soon, it is only
8  * used during the transition from old configuration API to new configuration
9  * API.
10  * 
11  * @deprecated
12  */
13 @Deprecated
14 public interface ConfigAttribute {
15
16   void setQueryConfigHandler(AbstractQueryConfig config);
17   
18 }