Hyperlink Detector Targets

Identifier:
org.eclipse.ui.workbench.texteditor.hyperlinkDetectorTargets

Since:
3.3

Description:
This extension point is used to plug in hyperlink detector targets.

Configuration Markup:

<!ELEMENT extension (target+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT target (context+)?>

<!ATTLIST target

id          CDATA #REQUIRED

name        CDATA #REQUIRED

description CDATA #IMPLIED>


<!ELEMENT context EMPTY>

<!ATTLIST context

type CDATA #REQUIRED>


Examples:
The following is an example of a hyperlink detector target definition:

<extension
  point="org.eclipse.ui.workbench.texteditor.hyperlinkDetectorTargets">
  <target
    id="org.eclipse.jdt.ui.javaCode"
    name="Java Editor">
    <context type="org.eclipse.ui.texteditor.ITextEditor"/>
  </target>
</extension>


Copyright (c) 2007 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-v20.html/ SPDX-License-Identifier: EPL-2.0