View Javadoc
1   package siouxsie.desktop.commands;
2   
3   /**
4    * Interface for intializing commands.
5    * @author Arnaud Cogoluegnes
6    * @version $Id$
7    */
8   public interface ICommandInitializer {
9   
10  	/**
11  	 * Initialize the command.
12  	 * @param command
13  	 */
14  	public void initialize(ICommand command);
15  	
16  }