mirror of https://github.com/Minres/RDL-Editor.git
61 lines
2.4 KiB
Java
61 lines
2.4 KiB
Java
|
/*
|
||
|
* generated by Xtext 2.26.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;
|
||
|
import org.eclipse.xtext.ide.refactoring.IRenameStrategy2;
|
||
|
import org.eclipse.xtext.ide.server.rename.IRenameService2;
|
||
|
import org.eclipse.xtext.ide.server.rename.RenameService2;
|
||
|
|
||
|
/**
|
||
|
* 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;
|
||
|
}
|
||
|
|
||
|
// contributed by org.eclipse.xtext.xtext.generator.ui.refactoring.RefactorElementNameFragment2
|
||
|
public Class<? extends IRenameService2> bindIRenameService2() {
|
||
|
return RenameService2.class;
|
||
|
}
|
||
|
|
||
|
// contributed by org.eclipse.xtext.xtext.generator.ui.refactoring.RefactorElementNameFragment2
|
||
|
public Class<? extends IRenameStrategy2> bindIRenameStrategy2() {
|
||
|
return IRenameStrategy2.DefaultImpl.class;
|
||
|
}
|
||
|
|
||
|
}
|