/******************************************************************************* * 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.RenameBranchDialog; import org.eclipse.jgit.lib.Repository; /** * Action for renaming a branch */ public class RenameBranchActionHandler extends RepositoryActionHandler { @Override public Object execute(ExecutionEvent event) throws ExecutionException { final Repository repository = getRepository(true, event); if (repository == null) return null; RenameBranchDialog dialog = new RenameBranchDialog(getShell(event), repository); dialog.open(); return null; } @Override public boolean isEnabled() { Repository repo = getRepository(); return repo != null && containsHead(repo); } }