You're not forced to have distinct RequestContext:
  context.persistPerson(person);
  context.persistSkill(skill);

In your case, it would imply changes on the server side though; either 
having a service class with persistPerson and persistSkill methods (as 
above), or rename your persist() methods on the Person and Skill domain 
objects, to have somthing like:
  context.persistPerson().using(person);
  context.persistSkill().using(skill);

-- 
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.

Reply via email to