Back to project page cloudwave.
The source code is released under:
Apache License
If you think the Android project cloudwave 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.luboganev.cloudwave.data; //from w ww . ja v a 2 s . com import java.util.ArrayList; /** * Object used as a model for the local storage */ public class LocalStorage { /** The name of the artist whose tracks we show in the live wallpaper */ public String artistUsername; /** The list of tracks objects */ public ArrayList<Track> artistTracks; /** The currently shown track index from the list of tracks */ public int currentTrackIndex; /** The random index of the next shown track from the list of tracks */ public int nextRandomIndex; }