org.eclipse.xtext.tasks.ITaskTagProvider Java Examples

The following examples show how to use org.eclipse.xtext.tasks.ITaskTagProvider. 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: XtendRuntimeModule.java    From xtext-xtend with Eclipse Public License 2.0 4 votes vote down vote up
public Class<? extends ITaskTagProvider> bindTaskTagProvider() {
	return XtendTaskTagProvider.class;
}
 
Example #2
Source File: AbstractSARLUiModule.java    From sarl with Apache License 2.0 4 votes vote down vote up
public Class<? extends ITaskTagProvider> bindITaskTagProvider() {
	return SarlTaskTagProvider.class;
}
 
Example #3
Source File: BlockExpressionBuilderImpl.java    From sarl with Apache License 2.0 2 votes vote down vote up
/** Replies the provider of task tags.
 *
 * @return the provider.
 */
protected ITaskTagProvider getTaskTagProvider() {
	return this.taskTagProvider;
}