1 /**
2 *
3 */
4 package siouxsie.desktop.commands.impl;
5
6 import siouxsie.desktop.commands.ICommand;
7 import siouxsie.desktop.commands.IExceptionHandler;
8
9 /**
10 * @author Arnaud Cogoluegnes
11 * @version $Id: ISiouxsieCommand.java 114 2008-02-22 15:04:46Z acogo $
12 */
13 public interface ISiouxsieCommand {
14
15 public ICommand getCommand();
16
17 public void setExceptionHandler(IExceptionHandler exceptionHandler);
18
19 }