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; //w w w . j a v a2s .c o m public class Show { private int ID; private String name; private int currentSeason; private int currentEpisode; public Show() { } public int getID() { return ID; } public void setID(int value) { ID = value; } public String getName() { return name; } public void setName(String value) { name = value; } public int getCurrentSeason() { return currentSeason; } public void setCurrentSeason(int value) { currentSeason = value; } public int getCurrentEpisode() { return currentEpisode; } public void setCurrentEpisode(int value) { currentEpisode = value; } }