> Just a quick Q, controllers, views, presenters and facades are all > different things?
Yes, different. Facades have nothing to do with presenters, controllers in this case. Facades are just stupid things that form the central access to "something", in my case: the component. I use the component facade for example: 1) To create the controller, view, presenter, etc.. as the facade is mocked during testing such that I can inject mocked controllers/views/widgets/ 2) App flow methods, for example the method HeaderMenuFacade contains the method afterSuccessLogin(String), such that it get informed by another component, like the LoginFacade, that a login with was performed with success. The HeaderMenuFacade now delegates this to the controller ( if loaded), such that it can update the header menu... -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
