Git Import Wizard
[egit.git] / org.eclipse.egit.ui / src / org / eclipse / egit / ui / internal / clone / ProjectCreator.java
blob700b0e3d5dd3ea6c45856f8fc954c542a2309ef9
1 /*******************************************************************************
2 * Copyright (c) 2010 SAP AG.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
8 * Contributors:
9 * Mathias Kinzler (SAP AG) - initial implementation
10 *******************************************************************************/
11 package org.eclipse.egit.ui.internal.clone;
13 import org.eclipse.core.resources.IProject;
15 /**
16 * Helper interface for the wizards
19 interface ProjectCreator {
21 public void importProjects();
23 public IProject[] getAddedProjects();