Back to project page ShowTracker.
The source code is released under:
GNU General Public License
If you think the Android project ShowTracker 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 com.rolandmai.showtracker; //from www . j av a2 s . c o m import java.util.List; public class Season { List<Episode> episodes; int current; public Season() { } public List<Episode> getEpisodes() { return episodes; } public void setEpisodes(List<Episode> value) { episodes = value; } public int getCurrent() { return current; } public void setCurrent(int value) { current = value; } }