* @return true if value was deleted, and false otherwise.
*/
private boolean handleRemoveSplash( final Splash value ) {
if ( MessageDialog.openConfirm( getSite().getShell(), "Confirm delete", "Would really like to remove the selected splash" ) ) {
RemoveCommand cmd = new RemoveCommand( editingDomain, getTask().getDeploy().getInfo().getSplash(), value );
if ( cmd.canExecute() ) {
cmd.execute();
return true;
}
}
return false;