For example, JDK 7 is capable of switch(String) rather than just switch(Number/Enum).

If I wrote a GWT client that has switch(String) in its code, will there be any problems?

switch(String) is one of the issues I can think of. Are there compatibility issues beyond switch(String)?

link|improve this question

80% accept rate
have you tried it out? – Oliver Weiler Aug 26 '11 at 15:59
@OliverWeiler: nothing wrong with asking even if you can find it out yourself. this question/answer saved me lots of time. – Janus Troelsen Mar 30 at 20:41
feedback

1 Answer

up vote 3 down vote accepted

GWT only officially supports Java 5. It does support a few of Java 6 though, such as allowing @Overrides on methods implementing an interface method, and String.isEmpty (though that one is about the runtime emulation, so it's not related to syntax and the compiler).

BTW, GWT uses Eclipse JDT for parsing, and that one hasn't yet been released with support for Java 7 (should come really soon though). Once that's done, GWT would have to be updated to take into account the new "syntax sugar" added by Java 7. When that time come (which probably won't come anytime soon, alas), I bet switch-on-strings will be one of the first supported features, given that JavaScript supports it (so it should be as easy to translate from Java to JS as a switch on an integer).

See also https://groups.google.com/d/topic/google-web-toolkit/dM8D9imIvAI/discussion

link|improve this answer
1  
I believe that Java 6 is officially supported. – anjanb Sep 14 '11 at 15:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.