org.eclipse.xtext.generator.IShouldGenerate Java Examples

The following examples show how to use org.eclipse.xtext.generator.IShouldGenerate. 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: JSONRuntimeModule.java    From n4js with Eclipse Public License 1.0 4 votes vote down vote up
/** Never generate something from .json files */
public Class<? extends IShouldGenerate> bindIShouldGenerate() {
	return NeverGenerate.class;
}
 
Example #2
Source File: DefaultUiModule.java    From xtext-eclipse with Eclipse Public License 2.0 4 votes vote down vote up
/**
 * @since 2.9
 */
public Class<? extends IShouldGenerate> bindIShouldGenerate() {
	return EclipseBasedShouldGenerate.class;
}
 
Example #3
Source File: XtendUiModule.java    From xtext-xtend with Eclipse Public License 2.0 4 votes vote down vote up
@Override
public Class<? extends IShouldGenerate> bindIShouldGenerate() {
	return IShouldGenerate.Always.class;
}
 
Example #4
Source File: XtendRuntimeModule.java    From xtext-xtend with Eclipse Public License 2.0 4 votes vote down vote up
public Class<? extends IShouldGenerate> bindIShouldGenerate() {
	return IShouldGenerate.Always.class;
}
 
Example #5
Source File: AbstractSARLUiModule.java    From sarl with Apache License 2.0 4 votes vote down vote up
public Class<? extends IShouldGenerate> bindIShouldGenerate() {
	return IShouldGenerate.Always.class;
}
 
Example #6
Source File: AbstractSARLRuntimeModule.java    From sarl with Apache License 2.0 4 votes vote down vote up
public Class<? extends IShouldGenerate> bindIShouldGenerate() {
	return IShouldGenerate.Always.class;
}