All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.devonfw.tools.ide.migrator.Migration Maven / Gradle / Ivy

Go to download

Code for configurator the creates or updates configuration of IDEs (Eclipse, etc.).

There is a newer version: 3.0.0-beta25
Show newest version
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;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy