blob: 14566c840f64135a974595bc93ff08b4af0bea3d [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2011, Mathias Kinzler <mathias.kinzler@sap.com>
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
package org.eclipse.egit.ui.internal.actions;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.egit.ui.internal.dialogs.DeleteBranchDialog;
import org.eclipse.jgit.lib.Repository;
/**
* Action for deleting a branch
*/
public class DeleteBranchActionHandler extends RepositoryActionHandler {
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
final Repository repository = getRepository(true, event);
if (repository == null)
return null;
DeleteBranchDialog dialog = new DeleteBranchDialog(getShell(event),
repository);
dialog.open();
return null;
}
@Override
public boolean isEnabled() {
Repository repo = getRepository();
return repo != null && containsHead(repo);
}
}