Skip to main content
summaryrefslogtreecommitdiffstats
blob: ed4a4660ee03e6672a3dc2e07253f865d4d619f8 (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
/*******************************************************************************
 * Copyright (c) 2009 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;

/**
 * A directive indicating the content at the given path should be included in
 * this document, and replace this node.
 *
 * @since 3.5
 */
public interface IIndexSubpath extends IUAElement {

	/**
	 * @return A segment of the keyword path of a seeAlso element
	 */
	public String getKeyword();
}

Back to the top