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

com.devonfw.tools.ide.migrator.xml.XmlMigration 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.xml;

import org.w3c.dom.Document;

/**
 * Migration of XML.
 */
public interface XmlMigration {

  /**
   * @param xml the XML {@link Document} to migrate. Will be modified with any change needed for migration.
   * @return {@code true} if the XML was modified, {@code false} otherwise.
   * @throws Exception on error.
   */
  boolean migrateXml(Document xml) throws Exception;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy