added list commits

This commit is contained in:
Kohsuke Kawaguchi
2012-04-24 16:30:01 -07:00
parent a124d7f714
commit 39631461ae
4 changed files with 93 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
package org.kohsuke.github;
/**
* @author Kohsuke Kawaguchi
*/
public interface PagedIterable<T> extends Iterable<T> {
PagedIterator<T> iterator();
}