The reason why your are seeing error (1) in 2.7 and not in 2.6 (I assume) is that to implement minimal (class level) recompiles all the methods of a class are traversed in 2.7 where only entry point reachable methods were traversed in 2.6. In the past if you had a class that, for example, provided constants and those were the only members really used by this project, such a class would compile even if one of its methods referred to a class that is not emulated.
On Fri, Nov 7, 2014 at 9:22 AM, Koen Maes <[email protected]> wrote: > Hi > > I am trying my project with 2.7RC1. I can compile the whole project > without errors. > > But when I start the application, recompile is triggered and this gives me > two different errors : > > 1) java.util.StringTokenizer is not found > Tracing compile failure path for type > 'com.klawt.shared.domain.SearchFieldsTokenizer' > [ERROR] Errors in > 'file:/home/koen/workspace/klawt/shared/com/klawt/shared/domain/SearchFieldsTokenizer.java' > [ERROR] Line 16: No source code is available for type > java.util.StringTokenizer; did you forget to inherit a required module? > > 2) Troubles with GSS/CSS resource > > Computing all possible rebind results for > 'com.klawt.screen.ui.Resources' > Rebinding com.klawt.screen.ui.Resources > Invoking generator > com.google.gwt.resources.rebind.context.InlineClientBundleGenerator > Preparing method base_admin > The following problems were detected > [WARN] Line 75 column 54: encountered "*". Was > expecting one of: "|=" "~=" "=" "]" > [ERROR] Errors in > 'gen/com/klawt/screen/ui/menu/InvoiceMenuViewImpl_InvoiceMenuUiBinderImpl.java' > [ERROR] Line 108: Rebind result > 'com.klawt.screen.ui.BaseAdminCssResource' must be a class > > The class BaseAdminCssResource is a CSSResource. > > public interface BaseAdminCssResource extends CssResource { > > @ClassName("widget") > String widget(); > > @ClassName("widget-header") > String widgetHeader(); > > .... and so on.... > } > > > Anybody to give me some hints what is wrong ... > > thx > Koen > > -- > You received this message because you are subscribed to the Google Groups > "GWT Contributors" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-web-toolkit-contributors/a50cc5ac-f548-4432-a673-9c02073d3542%40googlegroups.com > <https://groups.google.com/d/msgid/google-web-toolkit-contributors/a50cc5ac-f548-4432-a673-9c02073d3542%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit-contributors/CAC7T7gndED9G3tox3XGuJTwv97Jp9ioHK%3DL%3D6MhYydrpezWzxg%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
