io.codemodder.remediation.FixCandidateSearchResults 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.remediation;
import io.codemodder.codetf.UnfixedFinding;
import java.util.List;
/** The results of a fix candidate search. */
public interface FixCandidateSearchResults {
/** The findings that for which we could not find potential fix locations. */
List unfixableFindings();
/**
* Issues that were not matched by this searcher
*
* @return
*/
List unmatchedIssues();
/** The potential fix locations. */
List> fixCandidates();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy