/******************************************************************************* * Copyright (c) 2015 Red Hat 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: * Mickael Istria (Red Hat Inc.) - initial API and implementation ******************************************************************************/ package org.eclipse.ui.internal.wizards.datatransfer; import org.eclipse.core.resources.IProject; import org.eclipse.core.runtime.IPath; import org.eclipse.ui.wizards.datatransfer.ProjectConfigurator; public interface RecursiveImportListener { public void projectCreated(IProject project); public void projectConfigured(IProject project, ProjectConfigurator configurator); public void errorHappened(IPath location, Exception ex); }