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.
  1. ExcelColumn - to write the header title of the column
  2. ExcelCellLayout - to define the cell layout of each row
Below an example of table generated by merging 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