Hello everybody! I have three GWT modules A, B and C. C has some common widgets and utility classes/interfaces. both A and B depends on C. A depends on B. A has an entry point.
The problem is: module C has an interface which I want to replace by a class in A module. I use replace-with statement in A.gwt.xml file. If I use this interface from module A ( GWT.create(MyInterface.class) ) everything is fine, but when I do the same in module B I get "Deferred binding failed" exception. I guess it happens because module B doesn't have replace-with statement in B.gwt.xml file. But I don't want (and actually can't) have two implementations (one in A, another in B). Is there any way to fix this problem? Thank you, Andrey -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/zvAaRYD6IeAJ. 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.
