Hi, My ValueProxy looks like this :
@ProxyForName("com.google.gdata.data.extensions.FamilyName") public interface FamilyNameProxy extends ValueProxy { public String getValue(); public void setValue(String familyName); } I have similar proxies for EmailProxy, FullNameProxy, GivenNameProxy etc etc. If I want to create a new ContactEntry (=EntityProxy) on the client side, I need to populate this entity with a number of ValueProxies. I can of course create a service method that can be used on the client side to get a new FamilyNameProxy() and others... But this requires a async call of the service. ContactEntryProxy.create() is implemented for the EntityProxy through a Locator Can I implement this for ValueProxies too ? Do I return simply null for getId() and related functionality that does not apply to value proxies ? thx, koen -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.