mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
IDEA-97888
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
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 {}
|
||||
Reference in New Issue
Block a user