提交 6ce8cafc 编写于 作者: S Stephen Connolly

Oleg wanted Javadoc commend

上级 16254cb8
......@@ -76,6 +76,15 @@ public class RunList<R extends Run> extends AbstractList<R> {
this.base = combine(runLists);
}
/**
* Createsa a {@link RunList} combining all the runs of the supplied jobs.
*
* @param jobs the supplied jobs.
* @param <J> the base class of job.
* @param <R> the base class of run.
* @return the run list.
* @since FIXME
*/
public static <J extends Job<J,R>, R extends Run<J,R>> RunList<R> fromJobs(Iterable<? extends J> jobs) {
List<Iterable<R>> runLists = new ArrayList<>();
for (Job j : jobs)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册