/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.jackrabbit.core.query.lucene; import org.apache.jackrabbit.core.query.QueryHandler; import org.apache.jackrabbit.spi.commons.query.QueryRootNode; import java.io.IOException; /** * <code>SpellChecker</code> defines an interface to run a spellchecker over * a fulltext query statement. */ public interface SpellChecker { /** * Initializes this spell checker with an abstract query tree. * * @param handler the query handler that created this spell checker. * @throws IOException if an error occurs while initializing the spell * checker. */ void init(QueryHandler handler) throws IOException; /** * Runs the spell checker over the first spellcheck relation query node in * the abstract query tree and returns a suggestion in case this * spellchecker thinks the words are misspelled. If the spellchecker * determines that the words are spelled correctly <code>null</code> is * returned. * * @param aqt the abstract query tree, which may contain a relation query * node with a spellcheck operation. * @return a suggestion or <code>null</code> if this spell checker * determines that the fulltext query statement is spelled * correctly. */ String check(QueryRootNode aqt) throws IOException; /** * Closes this spell checker and allows it to free resources. */ void close(); }