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
--
View this message in context:
http://www.nabble.com/Simple-Java-Question---How-to-Overwrite-Set-tf3979647.html#a11297587
Sent from the MyFaces - Users mailing list archive at Nabble.com.