Hyperlink Detectors

org.eclipse.ui.workbench.texteditor.hyperlinkDetectors

3.3

This extension point is used to plug in hyperlink detectors.

<!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     CDATA #REQUIRED

class        CDATA #REQUIRED

activate     (true | false) "true"

modifierKeys CDATA #IMPLIED>


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>