blob: 93e12176436c30eac9eb85770ad152b659000c86 [file] [log] [blame]
import java.util.*;
import java.io.File;
class Foo {
public Collection<BuildTarget<?>> getDependencies(LayoutElementBuilderService builder, JpsPackagingElement element, TargetOutputIndex outputIndex) {
return builder.getDependencies(element, outputIndex);
}
}
class BuildTarget<R extends BuildRootDescriptor> {}
interface TargetOutputIndex {
Collection<BuildTarget<?>> getTargetsByOutputFile(File file);
}
class BuildRootDescriptor {}
class LayoutElementBuilderService<E extends JpsPackagingElement> {
public Collection<? extends BuildTarget<?>> getDependencies(E element, TargetOutputIndex outputIndex) {
return Collections.emptyList();
}
}
class JpsPackagingElement {}