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

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

There is a newer version: 0.98.6
Show newest version
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