se.bjurr.violations.lib.parsers.ViolationsParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of violations-lib Show documentation
Show all versions of violations-lib Show documentation
Library for parsing report files from static code analyzis.
package se.bjurr.violations.lib.parsers;
import java.util.Set;
import se.bjurr.violations.lib.ViolationsLogger;
import se.bjurr.violations.lib.model.Violation;
public interface ViolationsParser {
Set parseReportOutput(
final String reportContent, final ViolationsLogger violationsLogger) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy