Simple Java Question - How to Overwrite Set
After working so much in Java, wondering how do i overwrite java.util.Set
My pojo is Set of associated object. For example
class Parent
{
....
private Set child = new HashSet(0);
....
public Set getChild() {
return this.child;
}
.....
.....
}
I wanna overwrite set of child objects in pojo with the set passed from UI tier
Any pointers/suggestions will be highly appreciated
Regards
Bansi

