Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2f112586d893777e4cb4ce814324cd3f05e5eba5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*******************************************************************************
 * Copyright (C) 2012, Markus Duft <markus.duft@salomon.at>
 *
 * 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.clean;

import org.eclipse.jface.wizard.WizardDialog;
import org.eclipse.jgit.lib.Repository;
import org.eclipse.swt.widgets.Shell;

/**
 * A Wizard that guides the user through cleaning the repository.
 */
public class CleanWizardDialog extends WizardDialog {

	/**
	 * Creates a new Clean Wizard instance
	 *
	 * @param parentShell
	 *            parent shell
	 * @param repository
	 */
	public CleanWizardDialog(Shell parentShell, Repository repository) {
		super(parentShell, new CleanWizard(repository));
	}

}

Back to the top