Skip to content

1.1.0

Compare
Choose a tag to compare
@HendrikJanssen HendrikJanssen released this 12 Apr 12:01
· 12 commits to master since this release
634725b

This release covers the feature of inserting a hint text at the top of the tab.

You can use the following functions of the ExcelTab interface to create a tab with a hint text:

ExcelTab ofSql(String sql, String hintText);

ExcelTab ofSql(String sql, List<Object> parameters, String hintText);

ExcelTab of(String name, String sql, String hintText);

ExcelTab of(String name, String sql, List<Object> parameters, String hintText);

This is a completely backwards-compatible change.