blob: 2d669865a37524d47fa11a1653531d785f81a2db [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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.internal.context;
import org.eclipse.help.*;
/**
* <p>
* An enhanced version of <code>org.eclipse.help.IContext</code> interface
* allowing obtaining a styled text. Used by Intro plug-ing and
* org.eclipse.help.ui.internal.ContextHelpDialog TODO Create interface that
* will return description as XML and make it public
* </p>
*
* @since 3.0
*/
public interface IStyledContext extends IContext {
/**
* Returns the text description for this context with bold markers
*
* @return String with <@#$b>and </@#$b> to mark bold range (as
* IContext.getText() used to in 2.x)
*/
public String getStyledText();
}