This isn't a plugin problem; it is fundamental to GWT. If you want Data.java to be usable from client code you will need to map it in via the GWT module file. The following link will help you understand how to do that: http://code.google.com/webtoolkit/doc/1.6/DevGuideOrganizingProjects.html#DevGuideModules
On Wed, Jul 1, 2009 at 12:30 PM, Joseph Arceneaux <[email protected]>wrote: > The way I understand the GWT source arrangement paradigm, I have arranged > my code like so: > com.foo.project.Data.java - shared client/server code > com.foo.project.client.Project.java - client code. > com.foo.project.server.ServerSide.java - server code. > > When editing, Project.java can refer to Data.java elements, no problem. > But when I try to run in hosted mode, I get the error (from the client > code): > > Line 433: No source code is available for type com.foo.project.Data; did > you forget to inherit a required module? > > Is there some runtime / hosted mode configuration to be done to resolve > this? > > Thanks, > Joe > > > > > > > -- Miguel --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
