On the client-side: JsonUtils.safeEval for parsing, with JS overlay classes, and new JSONObject(jso).toString() for serialization (unfortunately not that great for performance, as it creates bunch of temporary objects: one for each value in your objects) work well.
For better performance on the client-side, and/or if you also want server-side support, have a look at AutoBeans. Use GWT.create() on an AutoBeanFactory on the client-side, and an AutoBeanSource on the server-side, and the everything else can be shared between client-side and server-side. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/rZdibaKI9WUJ. 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.
