blob: 580c0d4278b1473f5ae96cdb5795ce1d55d13da3 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2004, 2008 Intel 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:
* Intel Corporation - Initial API and implementation
**********************************************************************/
package org.eclipse.cdt.ui;
/**
* Represents the help book, that is a set of articles on some topic.
* Such as "C functions", "Qt library", etc., provided by help provider.
* <p>
* Clients may implement this interface.
* </p>
* @see ICHelpProvider
* @since 2.1
*/
public interface ICHelpBook {
public static final int HELP_TYPE_C = 1;
public static final int HELP_TYPE_CPP = 2;
public static final int HELP_TYPE_ASM = 3;
/**
* returns the tytle of the Help Book
* @return String representing the HelpBook tytle
*/
String getTitle();
/**
* gets the type of Help provided with this book that might be ine of ICHelpBook.HELP_TYPE_XXX
* @return one of ICHelpBook.HELP_TYPE_XXX representing the type of Provided help
*/
int getCHelpType();
}