Class IssuesChartPortlet
java.lang.Object
hudson.plugins.view.dashboard.DashboardPortlet
io.jenkins.plugins.analysis.core.portlets.IssuesChartPortlet
- All Implemented Interfaces:
ExtensionPoint
,Describable<hudson.plugins.view.dashboard.DashboardPortlet>
,ModelObject
public class IssuesChartPortlet
extends hudson.plugins.view.dashboard.DashboardPortlet
A dashboard view portlet that renders a two-dimensional table of issues per type and job.
- Author:
- Ullrich Hafner
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Extension point registration.Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
Constructor Summary
ConstructorDescriptionIssuesChartPortlet
(String name) Creates a new instance ofIssuesChartPortlet
. -
Method Summary
Modifier and TypeMethodDescriptionReturns the UI model for an ECharts line chart that shows the issues stacked by severity.int
boolean
boolean
getTools()
int
Registers the specified jobs in this portlet.void
setHeight
(int height) Sets the height of the chart (in number of pixels).void
setHideCleanJobs
(boolean hideCleanJobs) Determines if all jobs that have no issues from the selected static analysis tools should be hidden.void
setSelectTools
(boolean selectTools) Determines whether all available tools should be selected or if the selection should be done individually.void
setTools
(List<ToolSelection> tools) Returns the tools that should be taken into account when summing up the totals of a job.Methods inherited from class hudson.plugins.view.dashboard.DashboardPortlet
all, getComparator, getDashboard, getDescriptor, getDisplayName, getId, getJob, getName, getUrl
-
Constructor Details
-
IssuesChartPortlet
Creates a new instance ofIssuesChartPortlet
.- Parameters:
name
- the name of the portlet
-
-
Method Details
-
getHideCleanJobs
public boolean getHideCleanJobs() -
setHideCleanJobs
@DataBoundSetter public void setHideCleanJobs(boolean hideCleanJobs) Determines if all jobs that have no issues from the selected static analysis tools should be hidden.- Parameters:
hideCleanJobs
- iftrue
then all jobs with no issues will be hidden,false
otherwise
-
getSelectTools
public boolean getSelectTools() -
setSelectTools
@DataBoundSetter public void setSelectTools(boolean selectTools) Determines whether all available tools should be selected or if the selection should be done individually.- Parameters:
selectTools
- iftrue
the selection of tools can be done manually by selecting the corresponding ID, otherwise all available tools in a job are automatically selected
-
getTools
-
setTools
Returns the tools that should be taken into account when summing up the totals of a job.- Parameters:
tools
- the tools to select- See Also:
-
getHeight
public int getHeight() -
setHeight
@DataBoundSetter public void setHeight(int height) Sets the height of the chart (in number of pixels).- Parameters:
height
- height of the chart
-
getBuildTrendModel
Returns the UI model for an ECharts line chart that shows the issues stacked by severity.- Returns:
- the UI model as JSON
-
register
Registers the specified jobs in this portlet. These jobs will be used to render the trend chart. Note that rendering of the trend chart is done using an Ajax call later on.- Parameters:
visibleJobs
- the jobs to render- Returns:
- the number of jobs
-