Back to project page HeadphoneController.
The source code is released under:
GNU General Public License
If you think the Android project HeadphoneController 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 ca.mbabic.headphonecontroller.models; // w ww. j a va 2 s .c o m public class HCCmd { private String id; private String name; public HCCmd(String cmdKey, String cmdName) { id = cmdKey; name = cmdName; } public String getName() { return name; } public String getId() { return id; } @Override public String toString() { return getName(); } }