blob: a98bb719da9b80d9a42484c000b150e7179ce339 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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.jface.text.contentassist;
import org.eclipse.jface.viewers.StyledString;
/**
* Extends {@link org.eclipse.jface.text.contentassist.ICompletionProposal} with the following
* function:
* <ul>
* <li>Allow styled ranges in the display string.</li>
* </ul>
*
* @since 3.4
*/
public interface ICompletionProposalExtension6 {
/**
* Returns the styled string used to display this proposal in the list of completion proposals.
* This can for example be used to draw mixed colored labels.
* <p>
* <strong>Note:</strong> {@link ICompletionProposal#getDisplayString()} still needs to be
* correctly implemented as this method might be ignored in case of uninstalled owner draw
* support.
* </p>
*
* @return the string builder used to display this proposal
*/
StyledString getStyledDisplayString();
}