Do you bother initialising java bean values? Say, for example:
([g|s]etters omitted)
public class SomeClass {
private String foo;
private Date bar;
private Baz someObject;
}
(Yes, this is a POJO being used as a bean rather than a Java Bean in the strictest sense)
In the empty constructor, do you initialise these members, or simply do nothing? Likewise, would Baz initialise it's members as well?
Or do you just leave them as null?