schema.hyperlinkDetectors.exsd Maven / Gradle / Ivy
This extension point is used to plug in hyperlink detectors.
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
a name that allows to identify this hyperlink detector in the UI
the translatable description for this hyperlink detector. Currently, this description isn't displayed anywhere in the UI by the Eclipse SDK.
the id of the hyperlink target which has been registered via <code>org.eclipse.ui.workbench.texteditor.hyperlinkTargets</code> extension point
the fully qualified class name implementing the interface <code>org.eclipse.jface.text.hyperlink.IHyperlinkDetector</code>. Subclass <code>org.eclipse.jface.text.hyperlink.AbstractHyperlinkDetector</code> if you want to access context that is provided by the target.
an attribute that tells whether to activate the contributing plug-in when hyperlink detection takes place in the given target
the modifier keys that need to be pressed for this hyperlink detector to be active. Valid values are: "Alt", "Ctrl", "Shift", "Command", "M1", "M2", "M3", "M4" and a combination of them separated by "+". <i>Note that "Shift" by itself is not allowed because "Shift" + left mouse click sets the selection.</i> If this attribute is not specified then the default modifier keys are used.
The following is an example of a hyperlink detector definition:
<pre>
<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>
</pre>
3.3
Copyright (c) 2007, 2008 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>