How i m suppose to create header and footer for my MVP GWT application?
For example, the design i was used with gwt but without mvp was, having header, footer and content panel which i used to display current view. Header and footer was singleton instances loading once in the begging.
Header instance Singleton;
Footer instance Singleton;
Content instance Singleton;
Content.getContent(Set current view);
How could do the same following mvp model?
Thanks
Edit
The MVP implementation i m using is gwt presenter.
Good article on this topic: Using GWT MVP with multiple views on the page