org.codenarc.results.Results Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of CodeNarc Show documentation
Show all versions of CodeNarc Show documentation
The CodeNarc project provides a static analysis tool for Groovy code.
package org.codenarc.results;
import java.lang.*;
import java.io.*;
import java.net.*;
import java.util.*;
import groovy.lang.*;
import groovy.util.*;
public interface Results
{
java.lang.String getPath();
java.util.List getChildren();
java.util.List getViolations();
int getNumberOfViolationsWithPriority(int priority, boolean recursive);
int getTotalNumberOfFiles(boolean recursive);
int getNumberOfFilesWithViolations(int maxPriority, boolean recursive);
boolean isFile();
org.codenarc.results.Results findResultsForPath(java.lang.String path);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy