Class AnalyzeResult
java.lang.Object
de.ikor.sip.foundation.mvnplugin.model.AnalyzeResult
Final result of analyzing the code base for banned imports.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns whether at least one banned import has been found within the analyzed compile OR test source files.boolean
Returns whether at least one banned import has been found within the analyzed compile source code.boolean
Returns whether at least one banned import has been found within the analyzed test source code.
-
Constructor Details
-
AnalyzeResult
public AnalyzeResult()
-
-
Method Details
-
srcBanMatches
- Returns:
- discovered
BannedImportGroup
in the source code files
-
testBanMatches
- Returns:
- discovered
BannedImportGroup
in the test code files
-
bannedImportsFound
public boolean bannedImportsFound()Returns whether at least one banned import has been found within the analyzed compile OR test source files.- Returns:
- Whether a banned import has been found.
-
bannedImportsInCompileCode
public boolean bannedImportsInCompileCode()Returns whether at least one banned import has been found within the analyzed compile source code.- Returns:
- Whether a banned import has been found.
-
bannedImportsInTestCode
public boolean bannedImportsInTestCode()Returns whether at least one banned import has been found within the analyzed test source code.- Returns:
- Whether a banned import has been found.
-