Back to project page pi-android-player.
The source code is released under:
Apache License
If you think the Android project pi-android-player 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 edu.ptit.xbmc.model; // w w w .java2 s . co m public class Artist { String artistName, description; int artistID ; String thumbnail; public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getThumbnail() { return thumbnail; } public boolean isThumbnailAvailable(){ if(thumbnail == null ) return false; if(thumbnail .equals("")) return false; return true; } public void setThumbnail(String thumbnail) { this.thumbnail = thumbnail; } public int getArtistID() { return artistID; } public void setArtistID(int artistID) { this.artistID = artistID; } public Artist() { super(); } public String getArtistName() { return artistName; } public void setArtistName(String artistName) { this.artistName = artistName; } }