Back to project page Android-Apps.
The source code is released under:
Apache License
If you think the Android project Android-Apps 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.kniezrec.xbmcgear.player; //w w w. java2 s . c om public class Song { private String mTitle = ""; private String mArtist = ""; private String mLabel = ""; public String getTitle() { return mTitle; } public void setTitle(String title) { this.mTitle = title; } public String getArtist() { return mArtist; } public void setArtist(String artist) { this.mArtist = artist; } public String getLabel() { return mLabel; } public void setLabel(String label) { this.mLabel = label; } }