Package com.ptc.netmarkets.util.table
Interface NmTabular
- All Known Implementing Classes:
NmDefaultHTMLTable,NmDefaultHTMLTableTree
public interface NmTabular
Supported API: true
Extendable: false
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddCellValue(int row, int col, Object value) Add a value to a specified cell
Supported API: truevoidAdd a new column to the table with a given name.getObject(int row) Get the object corresponding to a given row.intGet the number of rows in the table.
-
Method Details
-
getRowCount
int getRowCount()Get the number of rows in the table.
Supported API: true- Returns:
- int
-
getObject
Get the object corresponding to a given row.
Supported API: true- Parameters:
row- row number in the table- Returns:
- NmObject
-
addColumn
Add a new column to the table with a given name.
Supported API: true- Parameters:
loc_name- name of the new column to be added
-
addCellValue
Add a value to a specified cell
Supported API: true- Parameters:
row- row numbercol- column numbervalue- value to be added
-