Package io.codemodder.remediation
Interface FixCandidateSearchResults<T>
public interface FixCandidateSearchResults<T>
The results of a fix candidate search.
-
Method Summary
Modifier and TypeMethodDescriptionThe potential fix locations.List<io.codemodder.codetf.UnfixedFinding>
The findings that for which we could not find potential fix locations.
-
Method Details
-
unfixableFindings
List<io.codemodder.codetf.UnfixedFinding> unfixableFindings()The findings that for which we could not find potential fix locations. -
fixCandidates
List<FixCandidate<T>> fixCandidates()The potential fix locations.
-