I am running an application with GWT and Google App-engine using Java. I have some common widgets that are "MultiSuggestBoxWidget", "TextBoxWithHelpTextWidget", "DateBoxWithHelpTextWidget" etc.
I have them in separate files and in separate packages. These widgets I am using in many modules in my application. Is there any advantage if I make all these widgets into single GWT common module. I am thinking that it may help in efficient processing speed.
Which means it will not generate JavaScript code many times if I make all widgets into single GWT module.
If anybody having experience on this.