Skip to main content
summaryrefslogtreecommitdiffstats
blob: 612d325825195eabe1eaaa945a6761856317d7cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*******************************************************************************
 * Copyright (c) 2005, 2015 Intel 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:
 *     Intel Corporation - initial API and implementation
 *     IBM Corporation - 122967 [Help] Remote help system
 *******************************************************************************/
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 extends IUAElement {

	/**
	 * Obtains the index entries contained in the index.
	 *
	 * @return Array of IIndexEntry
	 */
	IIndexEntry[] getEntries();
}

Back to the top