CellHolder.javaA plain Java bean (POJO) with three fields:
| Field | Type | Default | Description |
|---|---|---|---|
content | String | null ("" if constructed with null) | The textual content of the cell. toString() returns this directly. |
colspan | int | 1 | Number of columns this cell spans. |
rowspan | int | 1 | Number of rows this cell spans. |
CellHolder(String content): Sets content; if the argument is null, content becomes empty string.The null-safe constructor ensures getContent() never returns null, preventing NPEs in template rendering. Standard getters/setters are provided for all fields. No validation is performed on colspan/rowspan values.
868d6abb7 2026-01-01 2025 -> 2026 63081666f 2025-01-01 Source file headers: 2024-> 2025. b6092df09 2024-01-09 Copyright 2023 -> 2024 ab45d51fa 2023-01-01 Copyright 2001-2022 -> 2001-2023. 5f7ef41b8 2022-02-18 Copyright 2021 -> 2022 ceb63e8a1 2021-03-08 Source code header: (C) 2001-2021. 7c79f1922 2020-01-03 Copyright of source header -> 2020. dd5ca38ac 2019-06-07 CopyRight of all java file-header updated or created. 9ebb88522 2016-07-18 Initial commit