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.
/* * TODO: license/*from w ww . jav a 2 s . c o m*/ */ package ca.mbabic.headphonecontroller.commands; /** * Models the "no-op" command -- useful when sequence pressed is not bound to * any operation given current state. (e.g., triple-press when a call is in * progress). * * @author Marko Babic * */ public class NoOpCommand implements HCCommand { @Override public void execute() { // Do nothing. } }