org.eclipse.xtext.documentation.IFileHeaderProvider Java Examples

The following examples show how to use org.eclipse.xtext.documentation.IFileHeaderProvider. 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 IFileHeaderProvider> bindFileHeaderProvider() {
	return XtendFileHeaderProvider.class;
}
 
Example #2
Source File: CompilationUnitImpl.java    From xtext-xtend with Eclipse Public License 2.0 4 votes vote down vote up
@Pure
public IFileHeaderProvider getFileHeaderProvider() {
  return this.fileHeaderProvider;
}
 
Example #3
Source File: MultiLineCommentFileHeaderProviderTest.java    From xtext-core with Eclipse Public License 2.0 4 votes vote down vote up
@Override
public void setUp() throws Exception {
	super.setUp();
	with(DummyTestLanguageStandaloneSetup.class);
	fileHeaderProvider = get(IFileHeaderProvider.class);
}
 
Example #4
Source File: AbstractSARLRuntimeModule.java    From sarl with Apache License 2.0 4 votes vote down vote up
public Class<? extends IFileHeaderProvider> bindIFileHeaderProvider() {
	return XtendFileHeaderProvider.class;
}