Back to project page Tvdb-Api-Android.
The source code is released under:
Apache License
If you think the Android project Tvdb-Api-Android 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.sburba.tvdbapi.model; /* w w w . j a va 2 s . com*/ public abstract class TvdbItem { public static final int NOT_PRESENT = -1; protected static String BASE_IMAGE_URL = "http://thetvdb.com/banners/"; public abstract String getImageUrl(); public abstract String getTitleText(); public abstract String getDescText(); }