org.eclipse.xtext.ui.editor.hyperlinking.HyperlinkHelper Java Examples
The following examples show how to use
org.eclipse.xtext.ui.editor.hyperlinking.HyperlinkHelper.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: N4JSUiModule.java From n4js with Eclipse Public License 1.0 | 4 votes |
/** * Provide multiple hyperlink for composed members. */ public Class<? extends HyperlinkHelper> bindHyperlinkHelper() { return N4JSHyperlinkHelper.class; }
Example #2
Source File: JSONUiModule.java From n4js with Eclipse Public License 1.0 | 4 votes |
/** * Provide hyperlinks from extensions. */ public Class<? extends HyperlinkHelper> bindHyperlinkHelper() { return JSONHyperlinkHelperProvider.class; }