Class StaticAnalysisUtilities
- java.lang.Object
-
- hudson.plugins.emailext.plugins.content.StaticAnalysisUtilities
-
public class StaticAnalysisUtilities extends Object
Provides some helper methods to integrate the static analysis plug-ins into email-ext. Methods of this class will throwClassNotFoundException
if the analysis-core plug-in is not installed.- Author:
- Ulli Hafner
-
-
Constructor Summary
Constructors Constructor Description StaticAnalysisUtilities()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Action>
getActions(Run<?,?> build)
Returns all build actions that derive fromAbstractResultAction
.
-
-
-
Method Detail
-
getActions
public List<Action> getActions(Run<?,?> build)
Returns all build actions that derive fromAbstractResultAction
. Every action represents a single analysis result.- Parameters:
build
- the build to get the actions for- Returns:
- The static analysis actions for the specified build. The returned list might be empty if there are no such actions.
-
-