id - a unique id that will be used to identify this hyperlink detector
name - a name that allows to identify this hyperlink detector in the UI
description - the translatable description for this hyperlink detector. Currently, this description isn't displayed anywhere in the UI by the Eclipse SDK.
targetId - the id of the hyperlink target which has been registered via org.eclipse.ui.workbench.texteditor.hyperlinkTargets extension point
class - the fully qualified class name implementing the interface org.eclipse.jface.text.hyperlink.IHyperlinkDetector. Subclass org.eclipse.jface.text.hyperlink.AbstractHyperlinkDetector if you want to access context that is provided by the target.
activate - an attribute that tells whether to activate the contributing plug-in when hyperlink detection takes place in the given target
modifierKeys - 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 "+". Note that "Shift" by itself is not allowed because "Shift" + left mouse click sets the selection. If this attribute is not specified then the default modifier keys are used.
Examples:
The following is an example of a hyperlink detector definition:
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