Source code: irate/plugin/lircremote/LircRemoteControlListener.java
1 // Copyright 2003 Stephen Blackheath
2
3 package irate.plugin.lircremote;
4
5 /**
6 * Event listener interface for plugin for remote control based on lircd (Linux/Unix).
7 *
8 * @todo This class and LircRemoteControlPlugin.Button could be generalized to all
9 * remote controls.
10 *
11 * @author Stephen Blackheath
12 */
13 public interface LircRemoteControlListener
14 {
15 public void connectStatusChanged(LircRemoteControlPlugin plugin, boolean connected);
16
17 public void buttonPressed(LircRemoteControlPlugin plugin, Button button);
18 }
19