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

io.codemodder.FixOnlyCodeChanger Maven / Gradle / Ivy

There is a newer version: 0.97.9
Show newest version
package io.codemodder;

import io.codemodder.codetf.DetectorRule;

/**
 * A codemod that only fixes issues and does not perform its own detection, instead relying on
 * external analysis from other tools.
 *
 * 

This is often provided via SARIF but can be provided by other means. */ public interface FixOnlyCodeChanger { /** Detection tool name. */ String vendorName(); /** A description of the rule. */ DetectorRule detectorRule(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy