![JAR search and dependency download from the Maven repository](/logo.png)
io.codemodder.providers.sonar.RuleFinding Maven / Gradle / Ivy
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();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy