You need to create a module and reference it as a GWT module.
In the referenced library,
go, to contactEntry JAR file.
If contactEntry package is com.yyy.zzz.ContactEntry
put ContactEntry.gwt.xml in the package com.yyy
Its content would be
<module>
<inherits name="com.google.gwt.user.User" />
<source path='zzzz' />
</module>
Include it in your main module *.gwt.xml
<inherits name="com.yyy.ContactEntry.gwt" />
Compile it. It should work
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-web-toolkit/-/RFBuX1haS0dLZ2NK.
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.