org.eclipse.xtext.ui.editor.doubleClicking.DoubleClickStrategyProvider Java Examples
The following examples show how to use
org.eclipse.xtext.ui.editor.doubleClicking.DoubleClickStrategyProvider.
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 |
/** * Bind the double click strategy provider. */ public Class<? extends DoubleClickStrategyProvider> bindDoubleClickStrategyProvider() { return N4JSDoubleClickStrategyProvider.class; }
Example #2
Source File: DotHtmlLabelUiModule.java From gef with Eclipse Public License 2.0 | 4 votes |
public Class<? extends DoubleClickStrategyProvider> bindDoubleClickStrategyProvider() { return DotHtmlLabelDoubleClickStrategyProvider.class; }
Example #3
Source File: DotUiModule.java From gef with Eclipse Public License 2.0 | 4 votes |
public Class<? extends DoubleClickStrategyProvider> bindDoubleClickStrategyProvider() { return DotDoubleClickStrategyProvider.class; }
Example #4
Source File: XtendUiModule.java From xtext-xtend with Eclipse Public License 2.0 | 4 votes |
public Class<? extends DoubleClickStrategyProvider> bindDoubleClickStrategyProvider() { return XtendDoubleClickStrategyProvider.class; }
Example #5
Source File: AbstractSARLUiModule.java From sarl with Apache License 2.0 | 4 votes |
public Class<? extends DoubleClickStrategyProvider> bindDoubleClickStrategyProvider() { return XtendDoubleClickStrategyProvider.class; }