Package adams.data.spreadsheet
Interface DataRow
-
- All Superinterfaces:
Mergeable<Row>,Row,Serializable,SpreadSheetColumnInsertionListener
- All Known Implementing Classes:
DataRowView,DenseDataRow,DenseFloatDataRow,InstanceView,SparseDataRow,SparseFloatDataRow
public interface DataRow extends Row, SpreadSheetColumnInsertionListener
The interface for data rows.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataRowgetClone(SpreadSheet owner)Returns a clone of itself.voidspreadSheetColumnInserted(SpreadSheetColumnInsertionEvent e)A column got inserted.-
Methods inherited from interface adams.data.spreadsheet.Row
addCell, addCell, assign, cellKeys, cells, clear, getCell, getCell, getCellCount, getCellKey, getContent, getOwner, hasCell, hasCell, indexOf, isEmpty, isEmpty, mergeWith, newCell, removeCell, removeCell, removeMissing, setOwner, toString
-
-
-
-
Method Detail
-
getClone
DataRow getClone(SpreadSheet owner)
Returns a clone of itself.
-
spreadSheetColumnInserted
void spreadSheetColumnInserted(SpreadSheetColumnInsertionEvent e)
A column got inserted.- Specified by:
spreadSheetColumnInsertedin interfaceSpreadSheetColumnInsertionListener- Parameters:
e- the insertion event
-
-