1 package siouxsie.desktop.events; 2 3 import java.util.EventListener; 4 5 /** 6 * Interface for object susceptible of 7 * launching desktop event. 8 * @author Arnaud Cogoluegnes 9 * @version $Id$ 10 */ 11 public interface IDesktopActor extends EventListener { 12 13 /** 14 * Init the actor with the desktop bus. 15 * @param desktopBus 16 */ 17 public void init(DesktopBus desktopBus); 18 19 /** 20 * Fire a desktop event. 21 * @param evt 22 */ 23 public void fireDesktopEvent(DesktopEvent evt); 24 25 }