We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently all fields are treated as text with toString() method. There should be possibility to assign custom column formatters.
toString()
E.g:
interface ICellFormatter<T> { String format(T what); } class DefaultFormatter implements ICellFormatter<Object> { @Override String format(Object what) { return what.toString(); } }
The text was updated successfully, but these errors were encountered:
Issue #20: ITableSource provides Objects instead of Strings.
e46bb3b
ITableSource is not backward compatible. It provides iteration of Object cells instead of String cells.
Issue #20: This is partially implemented support for custom formatting.
27b169b
Issue #20: Readme generation refactoring.
9ef7ba2
Issue #20: Custom column formatting implementation.
76c5fda
* Column formatting by field class.
Issue #20: Formatting update.
9a00598
mjfryc
When branches are created from issues, their pull requests are automatically linked.
Currently all fields are treated as text with
toString()
method.There should be possibility to assign custom column formatters.
E.g:
The text was updated successfully, but these errors were encountered: