io.codemodder.CodemodExecutor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codemodder-base Show documentation
Show all versions of codemodder-base Show documentation
Base framework for writing codemods in Java
package io.codemodder;
import io.codemodder.codetf.CodeTFResult;
import java.nio.file.Path;
import java.util.List;
/** A type responsible for executing a codemod on a set of files. */
public interface CodemodExecutor {
/** Execute the codemod on the given file paths. */
CodeTFResult execute(List filePaths);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy