org.eclipse.xtext.ui.editor.quickfix.DefaultQuickfixProvider Java Examples
The following examples show how to use
org.eclipse.xtext.ui.editor.quickfix.DefaultQuickfixProvider.
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: DefaultUiModule.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
public Class<? extends IssueResolutionProvider> bindIssueResolutionProvider() { return DefaultQuickfixProvider.class; }
Example #2
Source File: DefaultXbaseUiModule.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
public Class<? extends DefaultQuickfixProvider.CrossRefResolutionConverter> bindDefaultQuickfixProvider$CrossRefResolutionConverter() { return XbaseCrossRefResolutionConverter.class; }
Example #3
Source File: QuickfixProviderSupplier.java From n4js with Eclipse Public License 1.0 | 2 votes |
/** * Returns with the supplier {@link DefaultQuickfixProvider quickfix provider} instance. * * @return the quick fix provider instance. */ @Override DefaultQuickfixProvider get();