View Javadoc
1   package siouxsie.desktop.commands.impl;
2   
3   import siouxsie.desktop.commands.ICommand;
4   
5   /**
6    * Command for 
7    * @author Arnaud Cogoluegnes
8    * @version $Id$
9    */
10  public class ExitCommand extends AbstractCommand implements ICommand {
11  
12  	/*
13  	 * (non-Javadoc)
14  	 * @see siouxsie.desktop.commands.ICommand#execute()
15  	 */
16  	public void execute() {
17  		// TODO ask confirmation and send some events
18  		System.exit(0);
19  	}
20  
21  }