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:
Erik Hatcher 2007-03-07 02:39:24 +00:00
parent 1d1e44681e
commit b972b13174
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ package org.apache.lucene.search.regex;
* Defines basic operations needed by {@link RegexQuery} for a regular
* expression implementation.
*/
interface RegexCapabilities {
public interface RegexCapabilities {
/**
* Called by the constructor of {@link RegexTermEnum} allowing
* implementations to cache a compiled version of the regular

View File

@ -21,7 +21,7 @@ package org.apache.lucene.search.regex;
/**
* Defines methods for regular expression supporting Querys to use.
*/
interface RegexQueryCapable {
public interface RegexQueryCapable {
void setRegexImplementation(RegexCapabilities impl);
RegexCapabilities getRegexImplementation();
}