io.codemodder.providers.sonar.RuleFinding Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codemodder-plugin-sonar Show documentation
Show all versions of codemodder-plugin-sonar Show documentation
Plugin to enable the use of Sonar in codemods
package io.codemodder.providers.sonar;
import io.codemodder.sonar.model.SonarFinding;
import java.nio.file.Path;
import java.util.List;
/** A view of the Sonar findings results file for a given rule. */
public interface RuleFinding {
/** A list of findings associated with the given path. */
List getResultsByPath(Path path);
/** Whether any results are available. */
boolean hasResults();
}