org.eclipse.xtext.findReferences.TargetURICollector Java Examples

The following examples show how to use org.eclipse.xtext.findReferences.TargetURICollector. 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: N4JSRuntimeModule.java    From n4js with Eclipse Public License 1.0 4 votes vote down vote up
/***/
public Class<? extends TargetURICollector> bindTargetURICollector() {
	return InferredElementsTargetURICollector.class;
}
 
Example #2
Source File: DefaultXbaseRuntimeModule.java    From xtext-extras with Eclipse Public License 2.0 4 votes vote down vote up
/**
 * @since 2.13
 */
public Class<? extends TargetURICollector> bindTargetURICollector() {
	return JvmModelTargetURICollector.class;
}
 
Example #3
Source File: AbstractHierarchyBuilder.java    From xtext-core with Eclipse Public License 2.0 4 votes vote down vote up
protected TargetURICollector getTargetURICollector() {
	return targetURICollector;
}
 
Example #4
Source File: AbstractHierarchyBuilder.java    From xtext-core with Eclipse Public License 2.0 4 votes vote down vote up
public void setTargetURICollector(TargetURICollector targetURICollector) {
	this.targetURICollector = targetURICollector;
}
 
Example #5
Source File: AbstractSARLRuntimeModule.java    From sarl with Apache License 2.0 4 votes vote down vote up
public Class<? extends TargetURICollector> bindTargetURICollector() {
	return JvmModelTargetURICollector.class;
}