So I will need methods :
public Email createEmail() {
return new Email();
}
public Name createName() {
return new Name();
}
public GivenName createGivenName() {
return new GivenName();
}
public FamilyName createFamilyName() {
return new FamilyName();
}
public FullName createFullName() {
return new FullName();
}
public Nickname createNickname() {
return new Nickname();
}
and many many more....
that's so much boilerplate....
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.