[gwt-contrib] Re: When encoding the payload, make sure that we're using the JSONified version of the object with n... (issue1628803)

2012-01-19 Thread rdayal
http://gwt-code-reviews.appspot.com/1628803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] When encoding the payload, make sure that we're using the JSONified version of the object with n... (issue1628803)

2012-01-19 Thread rdayal
Reviewers: tbroyer, Description: When encoding the payload, make sure that we're using the JSONified version of the object with non-collection encodes; otherwise we'll end up encoding a String as [Object] in web mode. Also remove the toString() on JsonSplittable; the proper implementation of toS

Re: [gwt-contrib] int vs Integer and the impact of "final"

2012-01-19 Thread Ray Cromwell
Final doesn't do much on classes or methods, since the compiler already detects when a method or class isn't overridden by anything else. Final on fields and parameters however is effective, because it lets the compiler assume those fields aren't written after the first assignment, which means the

Re: [gwt-contrib] Re: Firefox 9 DevMode Plugin (issue1620803)

2012-01-19 Thread John Lenz
Alan is on vacation and will be back next week. On Thu, Jan 19, 2012 at 9:22 AM, wrote: > ping? > > On 2012/01/03 16:27:51, conroy wrote: > > http://gwt-code-reviews.**appspot.com/1620803/diff/1/** > plugins/common/HostChannel.cpp

[gwt-contrib] Re: Firefox 9 DevMode Plugin (issue1620803)

2012-01-19 Thread conroy
ping? On 2012/01/03 16:27:51, conroy wrote: http://gwt-code-reviews.appspot.com/1620803/diff/1/plugins/common/HostChannel.cpp File plugins/common/HostChannel.cpp (right): http://gwt-code-reviews.appspot.com/1620803/diff/1/plugins/common/HostChannel.cpp#newcode322 plugins/common/HostChannel.

Re: [gwt-contrib] GWT support for Application Servers

2012-01-19 Thread John Tamplin
On Wed, Jan 18, 2012 at 3:42 PM, SergeZ wrote: > Hi everyone ! Is there any other application server, probably a > lightweight one, except Jetty, which allows developers to debug GWT > code in a hosted mode ? > > In particular, is it possible to debug it on the WebSphere Application > Server and

Re: [gwt-contrib] int vs Integer and the impact of "final"

2012-01-19 Thread John Tamplin
On Thu, Jan 19, 2012 at 4:41 AM, Alexander Orlov wrote: > In Java, *Integer* is an object and can be set to null whereas *int *is a > primitive and cannot be set to null. > > In RequestFactory only the wrapped versions of primitives (= objects) are > allowed. So you might use *Boolean* and *Intege

[gwt-contrib] int vs Integer and the impact of "final"

2012-01-19 Thread Alexander Orlov
I've asked this question in the regular GWT group but I think this question is too specific for the regular group. ### In Java, *Integer* is an object and can be set to null whereas *int *is a primitive and cannot be set to null. In RequestFactory only the wrapped versions of primitives (= obje