mirror of
https://github.com/jlengrand/github-api.git
synced 2026-04-08 00:11:23 +00:00
9 lines
157 B
Java
9 lines
157 B
Java
package org.kohsuke.github;
|
|
|
|
/**
|
|
* @author Kohsuke Kawaguchi
|
|
*/
|
|
public interface PagedIterable<T> extends Iterable<T> {
|
|
PagedIterator<T> iterator();
|
|
}
|