Android Open Source - kup Song






From Project

Back to project page kup.

License

The source code is released under:

GNU General Public License

If you think the Android project kup listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.stark.kup;
//from   w  w  w  .j ava2  s. c  o m
public class Song {
  private long id;
  private String title;
  private String artist;
  
  public Song(long songID, String songTitle, String songArtist) {
      id=songID;
      title=songTitle;
      artist=songArtist;
    }
  
  public long getID(){return id;}
  public String getTitle(){return title;}
  public String getArtist(){return artist;}
}




Java Source Code List

com.stark.kup.KUPlayer.java
com.stark.kup.MusicService.java
com.stark.kup.SongAdapter.java
com.stark.kup.Song.java