Package jmri.jmrit.logixng
Interface AnonymousTable
-
- All Superinterfaces:
Table
- All Known Implementing Classes:
DefaultAnonymousTable
public interface AnonymousTable extends Table
Represent an anonymous table. An anonymous table has no name. It can be assigned to a Memory or to a cell in a table but cannot be stored in an xml file. It's used as a temporary storage during execution of JMRI.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface jmri.jmrit.logixng.Table
Table.ColumnNotFoundException, Table.CsvType, Table.RowNotFoundException
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
deleteColumn(int col)
void
deleteRow(int row)
void
insertColumn(int col)
void
insertRow(int row)
-
Methods inherited from interface jmri.jmrit.logixng.Table
getCell, getCell, getCell, getCell, getColumnNumber, getCsvType, getRowNumber, isCsvTypeSupported, numColumns, numRows, setCell, setCell, setCell, setCsvType, storeTableAsCSV, storeTableAsCSV
-
-
-
-
Method Detail
-
insertColumn
void insertColumn(int col)
-
deleteColumn
void deleteColumn(int col)
-
insertRow
void insertRow(int row)
-
deleteRow
void deleteRow(int row)
-
-