Back to project page metawear-antifitness.
The source code is released under:
GNU General Public License
If you think the Android project metawear-antifitness 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 za.co.paulscott.models; // w ww . j av a 2 s .c o m public class DStvHighlights { private String description; private String showtime; private String imageURL; private String author; public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getShowtime() { return showtime; } public void setShowtime(String showtime) { this.showtime = showtime; } public String getImageURL() { return imageURL; } public void setImageURL(String imageURL) { this.imageURL = imageURL; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public DStvHighlights(String description, String showtime, String imageURL, String author) { super(); this.description = description; this.showtime = showtime; this.imageURL = imageURL; this.author = author; } @Override public String toString() { return "DStvHighlights [description=" + description + ", showtime=" + showtime + ", imageURL=" + imageURL + ", author=" + author + "]"; } }