blob: ed2d312b3c7f8d374dadd10bfa8e1f8d7b312930 [file] [log] [blame]
/*******************************************************************************
* 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;
/**
* IIndexEntry represents a single entry of the help index. It includes
* a keyword and related references into help content.
*
* @since 3.2
*/
public interface IIndexEntry extends IUAElement {
/**
* Returns the keyword that this entry is associated with
*
* @return the keyword
*/
public String getKeyword();
/**
* Obtains topics assosiated with this index entry (i.e. keyword).
*
* @return array of ITopic
*/
public ITopic[] getTopics();
/**
* Obtains the index subentries contained in the entry.
*
* @return the index subentries
*/
public IIndexEntry[] getSubentries();
}