Excuse my illiteracy as a newbie if my question is too trivial.
I am trying to build a gwt application, my application is going to be
an extension to an existing big project. In the existing project
there's a package which contains objects with serialization and
deserialization capabilities. Xstream is being used to accomplish that
and instead of creating same objects under my object, I'd like to
existing objects from external existing project.
As far as I read in the forums, I need to add a module to the existing
project:
<module>
<inherits name='com.google.gwt.user.User'/>
<source path="source-path/"/>
</module>
And in the gwt module I need to reference the application as follows:
<inherits name='com.cmt.ngp.common.gui.playlist'/>
So this helped, gwt compiler is able to recognize the external class
references, unfortunately this leads another big problem for me, gwt
compiler is not able to recognize xstream references, and throwing
lots of errors.
So I am wondering if it's possible to prevent this from happening, if
so how:
Thanks in advance.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---