Back to project page Bongo.
The source code is released under:
Apache License
If you think the Android project Bongo 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 info.llanox.mobile.model; //w w w . j a v a 2 s .c o m public class Song { private String name; private long duration; private String artist; private String album; private String path; public long getDuration() { return duration; } public void setDuration(long duration) { this.duration = duration; } public String getArtist() { return artist; } public void setArtist(String artist) { this.artist = artist; } public String getAlbum() { return album; } public void setAlbum(String album) { this.album = album; } public String getName() { return name; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public String getNombre() { return name; } public void setName(String nombre) { this.name = nombre; } public String toString(){ return name; } }