update with work status (not synchronized with my prev. version here)

This commit is contained in:
2026-02-21 15:16:22 +01:00
parent 3bb37ef10d
commit 16ef02b533
20 changed files with 529 additions and 167 deletions

View File

@@ -19,6 +19,14 @@ public class GenericTable extends HashTable {
convertToGenericTable();
}
public GenericTable(ExcelWorkbook pSrcTable) {
super(KEY_COLUMN, ROW_NUMBER_COLUMN, COLUMN_NUMBER_COLUMN, COLUMN_NAME_COLUMN, COLUMN_VALUE_COLUMN);
this.sourceTable = pSrcTable.getFirstTable();
convertToGenericTable();
}
private void convertToGenericTable() {
AbstractTable srcTable = this.sourceTable;
int noRows = srcTable.lenght();