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.commands; /*from w w w.ja va 2 s . co m*/ /** * Command executable by the application given input from the headphones. * Implementation of the Strategy Pattern. Will be useful when command executed * by each state in the state machine is dependent on configuration values. * See: http://sourcemaking.com/design_patterns/strategy * @author Marko */ public interface HCCommand { public void execute(); }