Pandaman, Sure, by default only code in client/ is included by the GWT compiler and code in other directories (by convention server/ for example) is only made available on the server. In your module file you can override the default directory 'client' to be something else or you can include multiple directories. Yet any directories not included will not be compiled by the GWT compiler and will not have GWT restrictions placed on them.
Fred On Wed, Jul 1, 2009 at 11:34 AM, Pandaman <[email protected]> wrote: > > I have a class that I want to include in a GWT module. Unfortunately, > it has a method that has functionality unsupported by GWT (it uses > Class.isInstance in case you're curious). I do not use this method in > my GWT application, but other non-GWT apps use this method, so I > cannot simply remove it. Is there a way to exclude this method in my > module definition? Perhaps an annotation on the method can do this? > > > -- Fred Sauer [email protected] --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
