blob: 05a71040c5b0e911dc9ba1af6b606f4c77dd2621 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.help.search;
import java.net.URL;
import org.apache.lucene.document.Document;
import org.eclipse.core.runtime.IStatus;
/**
* Represents a Lucene index for one locale. The interface is used
* to allow participants to delegate indexing of documents outside
* of the TOC using the same algorithms as those in TOC.
*/
public interface ISearchIndex {
/**
* Adds a document to the search index by parsing it using one of the file-based search
* participants, or the default HTML search participant. Use this method when encountering
* documents outside of TOC that are nevertheless of the known format and help system knows how
* to handle.
*
* @param pluginId
* the id of the contributing plug-in
* @param name
* the name of the document
* @param url
* the URL of the document using format '/pluginId/href'
* @param id
* the unique id of this document as defined in the participant
* @param doc
* the Lucene document
* @return the status of the operation
*/
IStatus addDocument(String pluginId, String name, URL url, String id, Document doc);
/**
* A search index is created for each locale.
* @return the locale associated with this index.
*/
String getLocale();
}