/******************************************************************************* * Copyright (c) 2011 GitHub Inc. * 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 * * Contributors: * Kevin Sawicki (GitHub Inc.) - initial API and implementation *******************************************************************************/ package org.eclipse.egit.ui.internal.commit.command; import java.util.List; import org.eclipse.core.commands.ExecutionEvent; import org.eclipse.core.commands.ExecutionException; import org.eclipse.egit.ui.internal.commit.RepositoryCommit; import org.eclipse.egit.ui.internal.repository.CreateBranchWizard; import org.eclipse.jface.wizard.WizardDialog; import org.eclipse.ui.handlers.HandlerUtil; /** * Create branch handler */ public class CreateBranchHandler extends CommitCommandHandler { /** * Command id */ public static final String ID = "org.eclipse.egit.ui.commit.CreateBranch"; //$NON-NLS-1$ @Override public Object execute(ExecutionEvent event) throws ExecutionException { List<RepositoryCommit> commits = getCommits(event); if (commits.size() == 1) { RepositoryCommit commit = commits.get(0); WizardDialog dlg = new WizardDialog( HandlerUtil.getActiveShellChecked(event), new CreateBranchWizard(commit.getRepository(), commit .getRevCommit().name())); dlg.setHelpAvailable(false); dlg.open(); } return null; } }