blob: a47c43c5e1d10c4b85601c1bf5a563fa92ef4bd3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 Intel Corporation.
* 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:
* Intel Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.help;
/**
* IIndex represents metaphor of the book index. It contains index entries,
* each of them is a keyword with references into related content.
*
* @since 3.2
*/
public interface IIndex {
/**
* Obtains the index entries contained in the index.
*
* @return Array of IIndexEntry
*/
IIndexEntry[] getEntries();
}