org.eclipse.xtext.xtext.generator.XtextGeneratorNaming Java Examples

The following examples show how to use org.eclipse.xtext.xtext.generator.XtextGeneratorNaming. 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: StateMachineGeneratorModule.java    From xtext-web with Eclipse Public License 2.0 4 votes vote down vote up
public Class<? extends XtextGeneratorNaming> bindNaming() {
	return StateMachineGeneratorNaming.class;
}
 
Example #2
Source File: EntitiesGeneratorModule.java    From xtext-web with Eclipse Public License 2.0 4 votes vote down vote up
public Class<? extends XtextGeneratorNaming> bindNaming() {
	return StateMachineGeneratorNaming.class;
}
 
Example #3
Source File: XtendGeneratorModule.java    From xtext-xtend with Eclipse Public License 2.0 4 votes vote down vote up
public Class<? extends XtextGeneratorNaming> bindNaming() {
	return XtendGeneratorNaming.class;
}
 
Example #4
Source File: AbstractGeneratorFragmentTests.java    From xtext-core with Eclipse Public License 2.0 4 votes vote down vote up
public Class<? extends XtextGeneratorNaming> bindNaming() {
  return XtextGeneratorNaming.class;
}
 
Example #5
Source File: XtextLangGeneratorModule.java    From xtext-core with Eclipse Public License 2.0 4 votes vote down vote up
public Class<? extends XtextGeneratorNaming> bindNaming() {
	return XtextLangGeneratorNaming.class;
}
 
Example #6
Source File: AbstractCodeElementExtractor.java    From sarl with Apache License 2.0 4 votes vote down vote up
/** Replies the naming conventions.
 *
 * @return the naming conventions.
 */
@Pure
protected XtextGeneratorNaming getNaming() {
	return this.naming;
}
 
Example #7
Source File: DotGeneratorModule.java    From gef with Eclipse Public License 2.0 2 votes vote down vote up
/**
 * Binds the naming of the Xtext generator to the custom naming extension.
 *
 * @return A custom naming extension to properly name internal packages.
 */
public Class<? extends XtextGeneratorNaming> bindNaming() {
	return DotNaming.class;
}
 
Example #8
Source File: GeneratorModule.java    From dsl-devkit with Eclipse Public License 1.0 2 votes vote down vote up
/**
 * Use a custom generator naming class.
 *
 * @return the custom generator naming class.
 */
public Class<? extends XtextGeneratorNaming> bindXtextGeneratorNaming() {
  return GeneratorNaming.class;
}
 
Example #9
Source File: AbstractSubCodeBuilderFragment.java    From sarl with Apache License 2.0 2 votes vote down vote up
/** Replies the naming conventions.
 *
 * @return the naming conventions.
 */
protected XtextGeneratorNaming getNaming() {
	return this.naming;
}