Back to project page Boxee-Thumb-Remote.
The source code is released under:
Apache License
If you think the Android project Boxee-Thumb-Remote 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 net.evendanan.android.thumbremote; //from ww w .ja v a 2 s. co m import java.io.IOException; public interface ServerRemote { int getVolume() throws IOException; void setVolume(int percent) throws IOException; void up() throws IOException; void down() throws IOException; void left() throws IOException; void right() throws IOException; void back() throws IOException; void select() throws IOException; void keypress(int unicode) throws IOException; void flipPlayPause() throws IOException; void stop() throws IOException; void seekRelative(double pct) throws IOException; void seekTo(double pct) throws IOException; void setServer(ServerAddress server); void setUiView(MediaStateListener uiView); }