当前位置: 首页>>代码示例>>Java>>正文


Java LexerIdeBindings类代码示例

本文整理汇总了Java中org.eclipse.xtext.ide.LexerIdeBindings的典型用法代码示例。如果您正苦于以下问题:Java LexerIdeBindings类的具体用法?Java LexerIdeBindings怎么用?Java LexerIdeBindings使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


LexerIdeBindings类属于org.eclipse.xtext.ide包,在下文中一共展示了LexerIdeBindings类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: configureContentAssistLexer

import org.eclipse.xtext.ide.LexerIdeBindings; //导入依赖的package包/类
public void configureContentAssistLexer(Binder binder) {
	binder.bind(Lexer.class)
		.annotatedWith(Names.named(LexerIdeBindings.CONTENT_ASSIST))
		.to(InternalPkmntcgoLexer.class);
}
 
开发者ID:rehne93,项目名称:pokemon-tcgo-deck-generator,代码行数:6,代码来源:AbstractPkmntcgoUiModule.java

示例2: configureHighlightingLexer

import org.eclipse.xtext.ide.LexerIdeBindings; //导入依赖的package包/类
public void configureHighlightingLexer(Binder binder) {
	binder.bind(org.eclipse.xtext.parser.antlr.Lexer.class)
		.annotatedWith(Names.named(LexerIdeBindings.HIGHLIGHTING))
		.to(de.baernreuther.dsls.parser.antlr.internal.InternalPkmntcgoLexer.class);
}
 
开发者ID:rehne93,项目名称:pokemon-tcgo-deck-generator,代码行数:6,代码来源:AbstractPkmntcgoUiModule.java

示例3: configureHighlightingTokenDefProvider

import org.eclipse.xtext.ide.LexerIdeBindings; //导入依赖的package包/类
public void configureHighlightingTokenDefProvider(Binder binder) {
	binder.bind(ITokenDefProvider.class)
		.annotatedWith(Names.named(LexerIdeBindings.HIGHLIGHTING))
		.to(AntlrTokenDefProvider.class);
}
 
开发者ID:rehne93,项目名称:pokemon-tcgo-deck-generator,代码行数:6,代码来源:AbstractPkmntcgoUiModule.java

示例4: configureContentAssistLexer

import org.eclipse.xtext.ide.LexerIdeBindings; //导入依赖的package包/类
public void configureContentAssistLexer(Binder binder) {
	binder.bind(Lexer.class)
		.annotatedWith(Names.named(LexerIdeBindings.CONTENT_ASSIST))
		.to(InternalN4JSLexer.class);
}
 
开发者ID:eclipse,项目名称:n4js,代码行数:6,代码来源:AbstractN4JSIdeModule.java

示例5: configureHighlightingLexer

import org.eclipse.xtext.ide.LexerIdeBindings; //导入依赖的package包/类
public void configureHighlightingLexer(Binder binder) {
	binder.bind(org.eclipse.xtext.parser.antlr.Lexer.class)
		.annotatedWith(Names.named(LexerIdeBindings.HIGHLIGHTING))
		.to(org.eclipse.n4js.parser.antlr.lexer.InternalN4JSLexer.class);
}
 
开发者ID:eclipse,项目名称:n4js,代码行数:6,代码来源:AbstractN4JSUiModule.java

示例6: configureContentAssistLexer

import org.eclipse.xtext.ide.LexerIdeBindings; //导入依赖的package包/类
public void configureContentAssistLexer(Binder binder) {
	binder.bind(Lexer.class)
		.annotatedWith(Names.named(LexerIdeBindings.CONTENT_ASSIST))
		.to(InternalRegularExpressionLexer.class);
}
 
开发者ID:eclipse,项目名称:n4js,代码行数:6,代码来源:AbstractRegularExpressionIdeModule.java

示例7: configureHighlightingLexer

import org.eclipse.xtext.ide.LexerIdeBindings; //导入依赖的package包/类
public void configureHighlightingLexer(Binder binder) {
	binder.bind(org.eclipse.xtext.parser.antlr.Lexer.class)
		.annotatedWith(Names.named(LexerIdeBindings.HIGHLIGHTING))
		.to(org.eclipse.n4js.regex.parser.antlr.lexer.InternalRegularExpressionLexer.class);
}
 
开发者ID:eclipse,项目名称:n4js,代码行数:6,代码来源:AbstractRegularExpressionUiModule.java

示例8: configureContentAssistLexer

import org.eclipse.xtext.ide.LexerIdeBindings; //导入依赖的package包/类
public void configureContentAssistLexer(Binder binder) {
	binder.bind(Lexer.class)
		.annotatedWith(Names.named(LexerIdeBindings.CONTENT_ASSIST))
		.to(InternalN4MFLexer.class);
}
 
开发者ID:eclipse,项目名称:n4js,代码行数:6,代码来源:AbstractN4MFUiModule.java

示例9: configureHighlightingLexer

import org.eclipse.xtext.ide.LexerIdeBindings; //导入依赖的package包/类
public void configureHighlightingLexer(Binder binder) {
	binder.bind(org.eclipse.xtext.parser.antlr.Lexer.class)
		.annotatedWith(Names.named(LexerIdeBindings.HIGHLIGHTING))
		.to(org.eclipse.n4js.n4mf.parser.antlr.lexer.InternalN4MFLexer.class);
}
 
开发者ID:eclipse,项目名称:n4js,代码行数:6,代码来源:AbstractN4MFUiModule.java

示例10: configureContentAssistLexer

import org.eclipse.xtext.ide.LexerIdeBindings; //导入依赖的package包/类
public void configureContentAssistLexer(Binder binder) {
	binder.bind(Lexer.class)
		.annotatedWith(Names.named(LexerIdeBindings.CONTENT_ASSIST))
		.to(InternalTypesLexer.class);
}
 
开发者ID:eclipse,项目名称:n4js,代码行数:6,代码来源:AbstractTypesIdeModule.java

示例11: configureHighlightingLexer

import org.eclipse.xtext.ide.LexerIdeBindings; //导入依赖的package包/类
public void configureHighlightingLexer(Binder binder) {
	binder.bind(org.eclipse.xtext.parser.antlr.Lexer.class)
		.annotatedWith(Names.named(LexerIdeBindings.HIGHLIGHTING))
		.to(org.eclipse.n4js.ts.parser.antlr.lexer.InternalTypesLexer.class);
}
 
开发者ID:eclipse,项目名称:n4js,代码行数:6,代码来源:AbstractTypesUiModule.java

示例12: configureContentAssistLexer

import org.eclipse.xtext.ide.LexerIdeBindings; //导入依赖的package包/类
public void configureContentAssistLexer(Binder binder) {
	binder.bind(Lexer.class)
		.annotatedWith(Names.named(LexerIdeBindings.CONTENT_ASSIST))
		.to(InternalMyDslLexer.class);
}
 
开发者ID:fatalerrortan,项目名称:Xtext_Xtend_HTML_Generator,代码行数:6,代码来源:AbstractMyDslUiModule.java

示例13: configureHighlightingLexer

import org.eclipse.xtext.ide.LexerIdeBindings; //导入依赖的package包/类
public void configureHighlightingLexer(Binder binder) {
	binder.bind(org.eclipse.xtext.parser.antlr.Lexer.class)
		.annotatedWith(Names.named(LexerIdeBindings.HIGHLIGHTING))
		.to(org.xtext.example.mydsl.parser.antlr.internal.InternalMyDslLexer.class);
}
 
开发者ID:fatalerrortan,项目名称:Xtext_Xtend_HTML_Generator,代码行数:6,代码来源:AbstractMyDslUiModule.java

示例14: configureContentAssistLexer

import org.eclipse.xtext.ide.LexerIdeBindings; //导入依赖的package包/类
public void configureContentAssistLexer(Binder binder) {
	binder.bind(Lexer.class)
		.annotatedWith(Names.named(LexerIdeBindings.CONTENT_ASSIST))
		.to(InternalBromiumLexer.class);
}
 
开发者ID:hristo-vrigazov,项目名称:bromium,代码行数:6,代码来源:AbstractBromiumIdeModule.java

示例15: configureHighlightingLexer

import org.eclipse.xtext.ide.LexerIdeBindings; //导入依赖的package包/类
public void configureHighlightingLexer(Binder binder) {
	binder.bind(org.eclipse.xtext.parser.antlr.Lexer.class)
		.annotatedWith(Names.named(LexerIdeBindings.HIGHLIGHTING))
		.to(com.hribol.bromium.dsl.parser.antlr.internal.InternalBromiumLexer.class);
}
 
开发者ID:hristo-vrigazov,项目名称:bromium,代码行数:6,代码来源:AbstractBromiumUiModule.java


注:本文中的org.eclipse.xtext.ide.LexerIdeBindings类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。