com.devonfw.tools.ide.migrator.Migration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devon-ide-configurator Show documentation
Show all versions of devon-ide-configurator Show documentation
Code for configurator the creates or updates configuration of IDEs (Eclipse, etc.).
package com.devonfw.tools.ide.migrator;
import java.io.File;
/**
* Interface for a migration.
*/
public interface Migration {
/**
* @param projectFolder the {@link File} (directory) to migrate.
* @throws Exception on error.
*/
void migrate(File projectFolder) throws Exception;
}