Class IssuesTablePortlet.PortletTableModel
- java.lang.Object
-
- io.jenkins.plugins.analysis.core.portlets.IssuesTablePortlet.PortletTableModel
-
- Enclosing class:
- IssuesTablePortlet
public static class IssuesTablePortlet.PortletTableModel extends Object
Provides the model for the two-dimensional table of issues per type and job.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<IssuesTablePortlet.TableRow>
getRows()
Returns the rows of the table (asIssuesTablePortlet.TableRow
instances).Collection<String>
getToolNames()
Returns the names of the tools that should be used as column header of the table.int
size()
Returns the number of rows in this model.
-
-
-
Method Detail
-
size
public int size()
Returns the number of rows in this model.- Returns:
- the number of rows
-
getToolNames
public Collection<String> getToolNames()
Returns the names of the tools that should be used as column header of the table.- Returns:
- the tool names (may contain valid HTML)
-
getRows
public List<IssuesTablePortlet.TableRow> getRows()
Returns the rows of the table (asIssuesTablePortlet.TableRow
instances).- Returns:
- the rows
-
-