blob: 5a9ab8f3865bac64d26d71051add6465d69351c6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.help;
/**
* A directive indicating a link to another toc to be inserted at (and replace)
* this link.
*
* @since 3.3
*/
public interface ILink extends IUAElement {
/**
* Returns the unique id of the toc to link, e.g.
* "/org.eclipse.platform.doc.user/toc.xml"
*
* @return the toc id to link
*/
public String getToc();
}