io.codemodder.remediation.FixCandidateSearchResults Maven / Gradle / Ivy
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();
/** The potential fix locations. */
List> fixCandidates();
}