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

io.codemodder.remediation.LegacyFixCandidateSearchResults Maven / Gradle / Ivy

package io.codemodder.remediation;

import io.codemodder.codetf.UnfixedFinding;
import java.util.List;

/** The results of a fix candidate search. */
@Deprecated
public interface LegacyFixCandidateSearchResults {
  /** The findings that for which we could not find potential fix locations. */
  List unfixableFindings();

  /** The potential fix locations. */
  List> fixCandidates();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy