Back to project page lastfm-android-music-discovery.
The source code is released under:
Apache License
If you think the Android project lastfm-android-music-discovery 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.mikeladze.musicdiscovery.album.adapter; //from w w w . ja v a 2 s. c om /** * A simple class used to hold data about a track. * * @author Tim Mikeladze */ public class LastFMTrack { private String title; private String artist; /** * Instantiates a new last fm track. * * @param title the title * @param artist the artist */ public LastFMTrack(String title, String artist) { this.title = title; this.artist = artist; } /** * Gets the title. * * @return the title */ public String getTitle() { return title; } /** * Gets the artist. * * @return the artist */ public String getArtist() { return artist; } }