It barfs on this line (right after my gwt import statements):
import java.text.SimpleDateFormat;
Any help is appreciated. It compiles fine in Eclipse, no errors until I
try to run.
Thanks,
Adrian
In your client code, you can only use java classes that gwt supports:
http://code.google.com/webtoolkit/documentation/jre.html
nothing from java.text is supported
To perform date formatting you would have to use a different method.
There is a class that performs some very simplistic date formatting
(org.gwtwidgets.client.util.SimpleDateFormat) in Rob Hanson's gwt-
widget library
http://gwt-widget.sourceforge.net/
-jason
Owen