Back to project page WhatsOnTV.
The source code is released under:
GNU General Public License
If you think the Android project WhatsOnTV listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.oncaphillis.whatsontv; //from w w w . j a v a2 s. c om import info.movito.themoviedbapi.model.tv.TvSeries; import java.util.List; public interface Pager { List<TvSeries> getPage(int page); void start(); void end(); }