mirror of https://github.com/Minres/RDL-Editor.git
48 lines
1.8 KiB
Java
48 lines
1.8 KiB
Java
|
/*
|
||
|
* generated by Xtext 2.12.0
|
||
|
*/
|
||
|
package com.minres.rdl.ide;
|
||
|
|
||
|
import com.google.inject.Binder;
|
||
|
import com.google.inject.name.Names;
|
||
|
import com.minres.rdl.ide.contentassist.antlr.RDLParser;
|
||
|
import com.minres.rdl.ide.contentassist.antlr.internal.InternalRDLLexer;
|
||
|
import org.eclipse.xtext.ide.DefaultIdeModule;
|
||
|
import org.eclipse.xtext.ide.LexerIdeBindings;
|
||
|
import org.eclipse.xtext.ide.editor.contentassist.FQNPrefixMatcher;
|
||
|
import org.eclipse.xtext.ide.editor.contentassist.IPrefixMatcher;
|
||
|
import org.eclipse.xtext.ide.editor.contentassist.IProposalConflictHelper;
|
||
|
import org.eclipse.xtext.ide.editor.contentassist.antlr.AntlrProposalConflictHelper;
|
||
|
import org.eclipse.xtext.ide.editor.contentassist.antlr.IContentAssistParser;
|
||
|
import org.eclipse.xtext.ide.editor.contentassist.antlr.internal.Lexer;
|
||
|
|
||
|
/**
|
||
|
* Manual modifications go to {@link RDLIdeModule}.
|
||
|
*/
|
||
|
@SuppressWarnings("all")
|
||
|
public abstract class AbstractRDLIdeModule extends DefaultIdeModule {
|
||
|
|
||
|
// contributed by org.eclipse.xtext.xtext.generator.parser.antlr.XtextAntlrGeneratorFragment2
|
||
|
public void configureContentAssistLexer(Binder binder) {
|
||
|
binder.bind(Lexer.class)
|
||
|
.annotatedWith(Names.named(LexerIdeBindings.CONTENT_ASSIST))
|
||
|
.to(InternalRDLLexer.class);
|
||
|
}
|
||
|
|
||
|
// contributed by org.eclipse.xtext.xtext.generator.parser.antlr.XtextAntlrGeneratorFragment2
|
||
|
public Class<? extends IContentAssistParser> bindIContentAssistParser() {
|
||
|
return RDLParser.class;
|
||
|
}
|
||
|
|
||
|
// contributed by org.eclipse.xtext.xtext.generator.parser.antlr.XtextAntlrGeneratorFragment2
|
||
|
public Class<? extends IProposalConflictHelper> bindIProposalConflictHelper() {
|
||
|
return AntlrProposalConflictHelper.class;
|
||
|
}
|
||
|
|
||
|
// contributed by org.eclipse.xtext.xtext.generator.exporting.QualifiedNamesFragment2
|
||
|
public Class<? extends IPrefixMatcher> bindIPrefixMatcher() {
|
||
|
return FQNPrefixMatcher.class;
|
||
|
}
|
||
|
|
||
|
}
|