1 /******************************************************************************* 2 * Copyright (c) 2005, 2007 Intel Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * Intel Corporation - initial API and implementation 10 * IBM Corporation - 122967 [Help] Remote help system 11 *******************************************************************************/ 12 package org.eclipse.help; 13 14 /** 15 * IIndex represents metaphor of the book index. It contains index entries, 16 * each of them is a keyword with references into related content. 17 * 18 * @since 3.2 19 */ 20 public interface IIndex extends IUAElement { 21 22 /** 23 * Obtains the index entries contained in the index. 24 * 25 * @return Array of IIndexEntry 26 */ 27 IIndexEntry[] getEntries(); 28 } 29