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

io.codemodder.providers.sonar.RuleFinding Maven / Gradle / Ivy

There is a newer version: 0.97.5
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy