>> no source code available for the type ....; did you forget to inherit a 
required module

You get this error, if GWT cannot find the source code for the module on the 
client side. 

So your job is to specify the packages which has to be converted into JS at 
compile time. This could be specified in your *<Module>.gwt.xml*. 

You can add any package as you want (as long as GWT can convert them into 
JS). 

Below is a simple example for doing the same: 

<source path='client' />
<source path='shared' />
<source path='server/enums' />

Here I was in need of all enums in *server/enums* package on the client side 
:) 

Thanks, 
-sowdri-




-- 
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.

Reply via email to