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

io.codemodder.providers.defectdojo.RuleFindings Maven / Gradle / Ivy

There is a newer version: 0.95.0
Show newest version
package io.codemodder.providers.defectdojo;

import java.nio.file.Path;
import java.util.List;

/** Represents the findings of a given rule. */
public interface RuleFindings {

  /** Returns the findings for the given path. */
  List getForPath(Path path);

  /** Returns true if there are no findings. */
  boolean isEmpty();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy