Class BlamesModel
- java.lang.Object
-
- io.jenkins.plugins.datatables.TableModel
-
- io.jenkins.plugins.analysis.core.model.DetailsTableModel
-
- io.jenkins.plugins.analysis.core.model.BlamesModel
-
public class BlamesModel extends DetailsTableModel
Provides the dynamic model for the details table that shows the source control blames.This blames model consists of the following columns:
- issue details (message and description)
- file name
- age
- SCM blame author name
- SCM blame author email
- SCM blame commit ID
- Author:
- Ullrich Hafner
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
BlamesModel.BlamesRow
A table row that shows the source control blames.-
Nested classes/interfaces inherited from class io.jenkins.plugins.analysis.core.model.DetailsTableModel
DetailsTableModel.TableRow
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<io.jenkins.plugins.datatables.TableColumn>
getColumns()
String
getId()
protected BlamesModel.BlamesRow
getRow(edu.hm.hafner.analysis.Issue issue)
Returns a table row for the specified issue.-
Methods inherited from class io.jenkins.plugins.analysis.core.model.DetailsTableModel
createAgeColumn, createDetailsColumn, createFileColumn, createHiddenDetailsColumn, createPackageColumn, createSeverityColumn, getAgeBuilder, getDescriptionProvider, getFileNameRenderer, getJenkinsFacade, getReport, getRows, getTableConfiguration
-
-
-
-
Method Detail
-
getId
public String getId()
- Specified by:
getId
in classio.jenkins.plugins.datatables.TableModel
-
getColumns
public List<io.jenkins.plugins.datatables.TableColumn> getColumns()
- Specified by:
getColumns
in classio.jenkins.plugins.datatables.TableModel
-
getRow
protected BlamesModel.BlamesRow getRow(edu.hm.hafner.analysis.Issue issue)
Description copied from class:DetailsTableModel
Returns a table row for the specified issue.- Specified by:
getRow
in classDetailsTableModel
- Parameters:
issue
- the issue to show in the row- Returns:
- a table row for the issue
-
-