diff --git a/java/ql/test/utils/model-generator/typebasedflow/p/Stream.java b/java/ql/test/utils/model-generator/typebasedflow/p/Stream.java new file mode 100644 index 00000000000..9ea8e75ebde --- /dev/null +++ b/java/ql/test/utils/model-generator/typebasedflow/p/Stream.java @@ -0,0 +1,34 @@ +package p; + +import java.util.function.*; +import java.util.Iterator; +import java.util.stream.Collector; + +public class Stream { + + public Iterator iterator() { + return null; + } + + // public boolean allMatch(Predicate predicate) { + // throw null; + // } + + // public R collect(Supplier supplier, BiConsumer + // accumulator, BiConsumer combiner) { + // throw null; + // } + + // public R collect(Collector collector) { + // throw null; + // } + + // public static Stream concat(Stream a, Stream + // b) { + // throw null; + // } + + public Stream distinct() { + throw null; + } +} \ No newline at end of file