mirror of https://github.com/apache/lucene.git
convert interfaces to public visibility that already should have had it
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@515431 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1d1e44681e
commit
b972b13174
|
@ -21,7 +21,7 @@ package org.apache.lucene.search.regex;
|
||||||
* Defines basic operations needed by {@link RegexQuery} for a regular
|
* Defines basic operations needed by {@link RegexQuery} for a regular
|
||||||
* expression implementation.
|
* expression implementation.
|
||||||
*/
|
*/
|
||||||
interface RegexCapabilities {
|
public interface RegexCapabilities {
|
||||||
/**
|
/**
|
||||||
* Called by the constructor of {@link RegexTermEnum} allowing
|
* Called by the constructor of {@link RegexTermEnum} allowing
|
||||||
* implementations to cache a compiled version of the regular
|
* implementations to cache a compiled version of the regular
|
||||||
|
|
|
@ -21,7 +21,7 @@ package org.apache.lucene.search.regex;
|
||||||
/**
|
/**
|
||||||
* Defines methods for regular expression supporting Querys to use.
|
* Defines methods for regular expression supporting Querys to use.
|
||||||
*/
|
*/
|
||||||
interface RegexQueryCapable {
|
public interface RegexQueryCapable {
|
||||||
void setRegexImplementation(RegexCapabilities impl);
|
void setRegexImplementation(RegexCapabilities impl);
|
||||||
RegexCapabilities getRegexImplementation();
|
RegexCapabilities getRegexImplementation();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue