Class AnalyzeResult
java.lang.Object
one.x1f.sip.foundation.mvnplugin.model.AnalyzeResult
Final result of analyzing the code base for banned imports.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns whether at least one banned import has been found within the analyzed compile OR test source files.booleanReturns whether at least one banned import has been found within the analyzed compile source code.booleanReturns 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
BannedImportGroupin the source code files
-
testBanMatches
- Returns:
- discovered
BannedImportGroupin 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.
-