Improved support for nullable columns
FireStorm 1.1.3 now generates extra methods on DTO (Data Transfer Objects) so that primitives can be tested for null values.
FireStorm 1.1.3 now generates extra methods on DTO (Data Transfer Objects) so that primitives can be tested for null values.
For example, if your database contains a column called "quantity" that allows nulls, you will now get these methods on the DTO:
void setAmount(int amount);
int getAmount();
boolean isAmountNull();
void setAmountNull(boolean isNull);