org.eclipse.xtext.resource.clustering.DisabledClusteringPolicy Java Examples

The following examples show how to use org.eclipse.xtext.resource.clustering.DisabledClusteringPolicy. 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: IncrementalBuilder.java    From xtext-core with Eclipse Public License 2.0 4 votes vote down vote up
/**
 * Run the build without clustering.
 */
public IncrementalBuilder.Result build(BuildRequest request,
		Function1<? super URI, ? extends IResourceServiceProvider> languages) {
	return build(request, languages, new DisabledClusteringPolicy());
}
 
Example #2
Source File: XIncrementalBuilder.java    From n4js with Eclipse Public License 1.0 2 votes vote down vote up
/**
 * Run the build without clustering.
 * <p>
 * Cancellation behavior: does not throw exception but returns with a partial result.
 */
public XBuildResult build(XBuildRequest request) {
	return build(request, new DisabledClusteringPolicy());
}