Class DefaultBuildGridImpl
- java.lang.Object
-
- au.com.centrumsystems.hudson.plugin.buildpipeline.Grid<BuildForm>
-
- au.com.centrumsystems.hudson.plugin.buildpipeline.BuildGrid
-
- au.com.centrumsystems.hudson.plugin.buildpipeline.DefaultBuildGridImpl
-
-
Constructor Summary
Constructors Constructor Description DefaultBuildGridImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BuildForm
get(int row, int col)
Obtains the project placed at the specific position.int
getColumns()
Width of the grid.int
getRows()
Height of the grid.void
set(int row, int col, BuildForm p)
Mutable, but only for the code that instantiatesDefaultBuildGridImpl
.-
Methods inherited from class au.com.centrumsystems.hudson.plugin.buildpipeline.Grid
getNextAvailableRow, isEmpty
-
-
-
-
Method Detail
-
set
public void set(int row, int col, BuildForm p)
Mutable, but only for the code that instantiatesDefaultBuildGridImpl
.- Parameters:
row
- position of the formcol
- position of the formp
- The build to add. null to remove the value.
-
get
public BuildForm get(int row, int col)
Description copied from class:Grid
Obtains the project placed at the specific position.
-
getColumns
public int getColumns()
Description copied from class:Grid
Width of the grid. Total number of columns.- Specified by:
getColumns
in classGrid<BuildForm>
- Returns:
- positive integer
-
-