Back to project page InputHandlerTest.
The source code is released under:
Apache License
If you think the Android project InputHandlerTest 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.mikedg.glass.control.inputhandler; /*from w ww. j a v a2 s .c o m*/ /** * Created by Michael on 2/28/14. */ public interface InputHandler { public void select(); public void left(); public void right(); public void back(); //These shjould be implemented to handle any connection based setup public void start(); public void stop(); public void setOnStateChangedListener(OnStateChangedListener onStateChangedListener); }