Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoopur Gupta2018-03-23 12:35:54 +0000
committerNoopur Gupta2018-03-23 12:38:01 +0000
commita035890396b7cbf3ae656755649e82024d37e128 (patch)
tree22e9f622e9c704647a8ea7bf78c030a90b67530f
parentbcefc04ef2677b4099003e22a90c007c862a0390 (diff)
downloadeclipse.platform.text-a035890396b7cbf3ae656755649e82024d37e128.tar.gz
eclipse.platform.text-a035890396b7cbf3ae656755649e82024d37e128.tar.xz
eclipse.platform.text-a035890396b7cbf3ae656755649e82024d37e128.zip
Bug 531421: [CodeMining] Adapt the source viewer CodeMining API to
support CodeMining preferences Fixed Javadoc Change-Id: I23c6e7abf4724a989126d6328b192cc9db675983
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/source/ISourceViewerExtension5.java12
1 files changed, 7 insertions, 5 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/ISourceViewerExtension5.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/ISourceViewerExtension5.java
index 9a732cf44f1..d802bb069ce 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/ISourceViewerExtension5.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/ISourceViewerExtension5.java
@@ -1,5 +1,5 @@
-/**
- * Copyright (c) 2017 Angelo ZERR.
+/*******************************************************************************
+ * Copyright (c) 2017, 2018 Angelo ZERR.
* 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
@@ -7,7 +7,7 @@
*
* 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;
@@ -40,9 +40,11 @@ public interface ISourceViewerExtension5 {
void setCodeMiningProviders(ICodeMiningProvider[] codeMiningProviders);
/**
- * Returns true there are code mining providers and false otherwise.
+ * Returns <code>true</code> if there are code mining providers and <code>false</code>
+ * otherwise.
*
- * @return true there are code mining providers and false otherwise.
+ * @return <code>true</code> if there are code mining providers and <code>false</code>
+ * otherwise.
*/
boolean hasCodeMiningProviders();

Back to the top