Tvshow.java
Go to the documentation of this file.
00001 
00009 package org.rosmultimedia.player.media.model;
00010 
00016 public class Tvshow extends Video {
00017     private int episode;
00018     private int season;
00019     private int tvshowid;
00020     //object uniqueid
00021     private String showtitle;
00022     private String firstaired;
00023     private String productioncode;
00024 
00026     public static Tvshow fromJson(String json) {
00027         return fromJson(json, Tvshow.class);
00028     }
00029 
00030     public int getEpisode() {
00031         return episode;
00032     }
00033     public void setEpisode(int episode) {
00034         this.episode = episode;
00035     }
00036     public int getSeason() {
00037         return season;
00038     }
00039     public void setSeason(int season) {
00040         this.season = season;
00041     }
00042     public int getTvshowid() {
00043         return tvshowid;
00044     }
00045     public void setTvshowid(int tvshowid) {
00046         this.tvshowid = tvshowid;
00047     }
00048     public String getShowtitle() {
00049         return showtitle;
00050     }
00051     public void setShowtitle(String showtitle) {
00052         this.showtitle = showtitle;
00053     }
00054     public String getFirstaired() {
00055         return firstaired;
00056     }
00057     public void setFirstaired(String firstaired) {
00058         this.firstaired = firstaired;
00059     }
00060     public String getProductioncode() {
00061         return productioncode;
00062     }
00063     public void setProductioncode(String productioncode) {
00064         this.productioncode = productioncode;
00065     }
00066 }


smarthome_media_model
Author(s):
autogenerated on Sat Jun 8 2019 20:54:19