On Feb 14, 12:26 pm, Dan <[email protected]> wrote: > Hi all, > > I am not sure this is the right place to post technical questions - if > not, where should I do it? - But I am facing this problem:
This is *exactly* the place to ask. [...] > package com.monkee.client; [...] > import com.monkee.beans.Login; [...] > Do I need to implement some particular interface to make it work as > public class? Any class used in client-side code has to be in a <source/> package. In your case, it should be enough to add the following to your com/ monkee/XXX.gwt.xml <source path="beans" /> (make sure you also have a <source path="client" />) -- 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.
