Is it a good or bad idea to make setters in java return "this"?
public Employee setName(String name){ this.name = name; return this; }
Let's say I've got a class called House with the two fields
House
name address