org.eclipse.xtext.ui.editor.outline.impl.OutlineNodeFactory Java Examples

The following examples show how to use org.eclipse.xtext.ui.editor.outline.impl.OutlineNodeFactory. 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: N4JSUiModule.java    From n4js with Eclipse Public License 1.0 4 votes vote down vote up
/**
 * Binds outline factory which creates special nodes to allow for inherited members to be filtered.
 */
public Class<? extends OutlineNodeFactory> bindOutlineNodeFactory() {
	return N4JSOutlineNodeFactory.class;
}
 
Example #2
Source File: XtendUiModule.java    From xtext-xtend with Eclipse Public License 2.0 4 votes vote down vote up
public Class<? extends OutlineNodeFactory> bindOutlineNodeFactory() {
	return XtendOutlineNodeFactory.class;
}
 
Example #3
Source File: AbstractOutlineTreeProvider.java    From dsl-devkit with Eclipse Public License 1.0 4 votes vote down vote up
public OutlineNodeFactory getFactory() {
  return factory;
}