org.eclipse.xtext.xbase.jvmmodel.JvmTypeExtensions Java Examples

The following examples show how to use org.eclipse.xtext.xbase.jvmmodel.JvmTypeExtensions. 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: CompilationUnitImpl.java    From xtext-xtend with Eclipse Public License 2.0 4 votes vote down vote up
@Pure
public JvmTypeExtensions getTypeExtensions() {
  return this.typeExtensions;
}
 
Example #2
Source File: AbstractExtraLanguageGenerator.java    From sarl with Apache License 2.0 4 votes vote down vote up
/** Change the type extension provider.
 *
 * @param provider the type extension provider.
 */
@Inject
public void setTypeExtensions(JvmTypeExtensions provider) {
	this.jvmTypeExtensions = provider;
}
 
Example #3
Source File: AbstractExtraLanguageGenerator.java    From sarl with Apache License 2.0 2 votes vote down vote up
/** Replies the type extension provider.
 *
 * @return the type extension provider.
 */
public JvmTypeExtensions getTypeExtensions() {
	return this.jvmTypeExtensions;
}