blob: 0ac525cbf46c44d8e16828cb6982c90ac09257d8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017, 2018 Angelo ZERR.
*
* 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:
* Angelo Zerr <angelo.zerr@gmail.com> - [CodeMining] Add CodeMining support in SourceViewer - Bug 527515
*******************************************************************************/
package org.eclipse.jface.text.source;
import org.eclipse.jface.text.codemining.ICodeMining;
import org.eclipse.jface.text.codemining.ICodeMiningProvider;
/**
* Extension interface for {@link org.eclipse.jface.text.source.ISourceViewer}.
* <p>
* It introduces API to access a minimal set of code mining APIs.</li>
* </p>
*
* @see ICodeMining
* @see ICodeMiningProvider
* @since 3.13
*/
public interface ISourceViewerExtension5 {
/**
* Set the {@link AnnotationPainter} to use to draw code minings.
*
* @param painter the {@link AnnotationPainter} to use to draw code minings.
*/
void setCodeMiningAnnotationPainter(AnnotationPainter painter);
/**
* Register the code mining providers.
*
* @param codeMiningProviders the code mining providers to register.
*/
void setCodeMiningProviders(ICodeMiningProvider[] codeMiningProviders);
/**
* Returns <code>true</code> if there are code mining providers and <code>false</code>
* otherwise.
*
* @return <code>true</code> if there are code mining providers and <code>false</code>
* otherwise.
*/
boolean hasCodeMiningProviders();
/**
* Update the code minings.
*
* Clients and implementors are responsible of calling this method when needed. A typical
* use-case can be to run it upon completion of a reconcilier and after a job that would compute
* all the necessary pre-requisites to insert code mining annotations.
*/
void updateCodeMinings();
}