On Mar 9, 2:41 am, mmoossen <[email protected]> wrote: > i found the problem > inhttp://code.google.com/p/google-web-toolkit/source/browse/trunk/user/... > line 114: > TODO: make the unmodifiable collections serializable > > so i think i will forget trying to use my server-side beans for client > code. > i will just translate the server-side results to client-only beans. > it is just a lot of work (cpu-time) for nothing, but it would be the > same to convert them to JSON for other frameworks.
The Google Collections project advertises its ImmutableList<T> class as being GWT-compatible. You might be able to resort to that project's Lists.of() method instead of the JDK Collections.unmodifiableList() method. Respectfully, Eric Jablow -- 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.
