org.eclipse.xtext.xbase.ui.contentassist.XbaseReferenceProposalCreator Java Examples
The following examples show how to use
org.eclipse.xtext.xbase.ui.contentassist.XbaseReferenceProposalCreator.
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: DefaultXbaseUiModule.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
@Override public Class<? extends AbstractJavaBasedContentProposalProvider.ReferenceProposalCreator> bindAbstractJavaBasedContentProposalProvider$ReferenceProposalCreator() { return XbaseReferenceProposalCreator.class; }
Example #2
Source File: SARLProposalProvider.java From sarl with Apache License 2.0 | 4 votes |
/** Replies if the SARL proposals are enabled. * @return <code>true</code> if the proposals are proposed. */ protected boolean isSarlProposalEnabled() { final XbaseReferenceProposalCreator creator = getXbaseCrossReferenceProposalCreator(); return creator.isShowTypeProposals() || creator.isShowSmartProposals(); }