This extension point is used to register codemining providers. Associating providers via this extension doesn't automatically enable code-mining, and that clients are also supposed to use a reconcilier or whatever event mechanism to invoke ISourceViewerExtension5.updateCodeMinings(). a fully qualified identifier of the target extension point an optional identifier of the extension instance an optional name of the extension instance A CodeMining provider. a string uniquely identifying this codemining provider the fully qualified class name implementing the interface <code>org.eclipse.jface.text.codemining.ICodeMiningProvider</code>. the display label for the codemining provider, which will show in the CodeMining UI preferences A core Expression that controls the enabled of the given codemining provider 3.10 The following is an example of a codemining provider definition: <pre> <extension point="org.eclipse.ui.workbench.texteditor.codeMiningProviders"> <codeMiningProvider class="org.eclipse.jdt.internal.ui.codemining.JavaReferencesCodeMiningProvider" id="org.eclipse.jdt.ui.codemining.references" label="Java References"> <enabledWhen> <with variable="editor"> <instanceof value="org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor"/> </with> </enabledWhen> </codeMiningProvider> </extension> </pre> See the org.eclipse.jface.text.codemining.ICodeMiningProvider class and the org.eclipse.ui.workbench.texteditor.codeMiningProviders extension point. Copyright (c) 2017 Angelo ZERR.<br> 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 <a href="https://www.eclipse.org/legal/epl-2.0">https://www.eclipse.org/legal/epl-v20.html</a>/ SPDX-License-Identifier: EPL-2.0