Table doesnt work with null Integer and Boolean values

Hi,

I’ve noticed that Table component works well when the bean has String fields or Aggregation fields = null but it doesnt work when you have Boolean or Integer = null

Eg:


List<DummyBean> list = getDummyBeanList();
table.setContainerDataSource(new BeanItemContainer<DummyBean>(
				DummyBean.class, list ));



Table component is able to show lines using this bean


public class DummyBean{
   private String name
   private BeanType beanType
   private boolean isMale
   private int age

....Getters and Setters

}



Table component is not able to show lines using this bean because it has null values


public class DummyBean{
   private Integer age
   private Boolean isMale

....Getters and Setters

}