Yes I have already declared the ProxyFor @ProxyFor(value = BrowserDetailItem.class, locator = BrowserDetailItemLocator.class)
On 8 mayo, 15:18, Brandon Donnelson <[email protected]> wrote: > Have you tried setting your @ProxyFor(BrowserDetailItem.class)? I haven't > configured my proxies > > This is how I'd do it. > > *For the client side* > @ProxyFor(BrowserDetailItem.class)) > public interface BrowserDetailItemProxy extends ValueProxy { > public String getName(); > public Integer getId(); > > } > > *For the server side, in any package on server side...* > public class BrowserDetailItem { > public String getName() { > return name; > } > public Integer getId() { > return id; > } > //.. and some setters for server side use probabl... > > } > > Thats how I configure my ValueProxies. > > Hope that helps, > Brandon Donnelsonhttp://c.gwt-examples.com -- 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.
