public class

TableRow

extends Object
implements ITableRow
java.lang.Object
   ↳ com.pnfsoftware.jeb.core.output.table.impl.TableRow

Class Overview

A trivial implementation of a table row of cells.

Summary

Public Constructors
TableRow(List<Cell> cells)
Create a row.
TableRow(Cell... cells)
Create a row.
Public Methods
List<Cell> getCells()
Return the list of cells within that row.
void setCells(List<Cell> cells)
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.pnfsoftware.jeb.core.output.table.ITableRow

Public Constructors

public TableRow (List<Cell> cells)

Create a row.

public TableRow (Cell... cells)

Create a row.

Public Methods

public List<Cell> getCells ()

Return the list of cells within that row.

Returns
  • a list of cells

public void setCells (List<Cell> cells)