本文整理匯總了Java中org.eclipse.xtext.xtext.generator.DefaultGeneratorModule類的典型用法代碼示例。如果您正苦於以下問題:Java DefaultGeneratorModule類的具體用法?Java DefaultGeneratorModule怎麽用?Java DefaultGeneratorModule使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
DefaultGeneratorModule類屬於org.eclipse.xtext.xtext.generator包,在下文中一共展示了DefaultGeneratorModule類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: asserTranslatesToDebugGrammar
import org.eclipse.xtext.xtext.generator.DefaultGeneratorModule; //導入依賴的package包/類
protected void asserTranslatesToDebugGrammar(final CharSequence xtextGrammar, final String expectedDebugGrammar) {
try {
EObject _model = super.getModel(xtextGrammar.toString());
final Grammar grammar = ((Grammar) _model);
DefaultGeneratorModule _defaultGeneratorModule = new DefaultGeneratorModule();
final Injector injector = Guice.createInjector(_defaultGeneratorModule);
final AntlrGeneratorFragmentTest.InMemFSA inMem = new AntlrGeneratorFragmentTest.InMemFSA();
final AntlrOptions options = new AntlrOptions();
injector.<AntlrDebugGrammarGenerator>getInstance(AntlrDebugGrammarGenerator.class).generate(grammar, options, inMem);
Assert.assertEquals(expectedDebugGrammar, IterableExtensions.<Object>head(inMem.getAllFiles().values()).toString());
} catch (Throwable _e) {
throw Exceptions.sneakyThrow(_e);
}
}
示例2: getConfiguration
import org.eclipse.xtext.xtext.generator.DefaultGeneratorModule; //導入依賴的package包/類
@Pure
public DefaultGeneratorModule getConfiguration() {
return this.configuration;
}
示例3: setConfiguration
import org.eclipse.xtext.xtext.generator.DefaultGeneratorModule; //導入依賴的package包/類
public void setConfiguration(final DefaultGeneratorModule configuration) {
this.configuration = configuration;
}
示例4: createInjector
import org.eclipse.xtext.xtext.generator.DefaultGeneratorModule; //導入依賴的package包/類
@Before
public void createInjector() {
DefaultGeneratorModule _defaultGeneratorModule = new DefaultGeneratorModule();
this.injector = Guice.createInjector(_defaultGeneratorModule);
}