Hyperlink Detector Targets

org.eclipse.ui.workbench.texteditor.hyperlinkDetectorTargets

3.3

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

<!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>


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>