1 package siouxsie.desktop.commands;
2
3
4 /**
5 * Interface for command (i.e. Swing actions)
6 * @author Arnaud Cogoluegnes
7 * @version $Id: IToggleCommand.java 114 2008-02-22 15:04:46Z acogo $
8 */
9 public interface IToggleCommand extends ICommand {
10
11 /**
12 * Execution
13 *
14 */
15 public void execute(boolean state);
16
17 }