tags:

views:

290

answers:

2

I'm trying to port a Swing application to GWT.

However lots of this application classes use things that are not supported by GWT JRE emulation library such as java.util.Locale, java.text.SimpleDateFormat and much more.

Is there a tool that scans a project and spots such problems?

+1  A: 

The Google Plugin for Eclipse shows errors for things that are unsupported by GWT's JRE emulation. http://code.google.com/eclipse/

Kelly Norton
+1  A: 

The GWT compiler will complain if you try to access classes in the JRE that are not supported.

David Nouls