Hyperlink Detectors

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

Since:
3.3

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

Configuration Markup:

<!ELEMENT extension (hyperlinkDetector+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT hyperlinkDetector EMPTY>

<!ATTLIST hyperlinkDetector

id           CDATA #REQUIRED

name         CDATA #REQUIRED

description  CDATA #IMPLIED

targetId     IDREF #REQUIRED

class        CDATA #REQUIRED

activate     (true | false) "true"

modifierKeys CDATA #IMPLIED>


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

<extension
  point="org.eclipse.ui.workbench.texteditor.hyperlinkDetectors">
  <hyperlinkDetector
    id="org.eclipse.example.jdt.internal.debug.ui.JavaHyperlinkDetector"
    targetId="org.eclipse.jdt.ui.javaCode"
    class="org.eclipse.example.jdt.internal.debug.ui.JavaHyperlinkDetector"
    name="%javaHyperlinkDetector">
  </hyperlinkDetector>
</extension>


Copyright (c) 2007, 2008 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