Package bld.generator.report.excel
Interface RowSheet
- All Known Implementing Classes:
DynamicRowSheet,SheetMappingRow
public interface RowSheet
The Interface RowSheet.
RowSheet is implemented to create an object that represents the row of the sheet.
Within the object you need to add at least the following 2 annotations for each field to write the columns of the table.
RowSheet is implemented to create an object that represents the row of the sheet.
Within the object you need to add at least the following 2 annotations for each field to write the columns of the table.
ExcelColumn- to write the header title of the columnExcelCellLayout- to define the cell layout of each row
SheetData and RowSheet classes.
| column name of the field 1 | column name of the field 2 | column name of the field 3 | column name of the field ...N | |
|---|---|---|---|---|
| row 1 | value of the field 1 | value of the field 2 | value of the field 3 | value of the field ...N |
| row 2 | value of the field 1 | value of the field 2 | value of the field 3 | value of the field ...N |
| row N | value of the field 1 | value of the field 2 | value of the field 3 | value of the field ...N |