schema.hyperlinkDetectorTargets.exsd Maven / Gradle / Ivy
This extension point is used to plug in hyperlink detector targets.
a fully qualified identifier of the target extension point
an optional identifier of the extension instance
an optional name of the extension instance
a unique id that will be used to identify this hyperlink detector target
a name that allows to identify this hyperlink detector target in the UI
the translatable description for this hyperlink detector target. Currently this description isn't displayed anywhere in the UI by the Eclipse SDK.
a hyperlink detector target context that can be accessed through <code>org.eclipse.jface.text.hyperlink.AbstractHyperlinkDetector.getAdapter(...)</code>
The following is an example of a hyperlink detector target definition:
<pre>
<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>
</pre>
3.3
Copyright (c) 2007 IBM Corporation and others.<br>
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>