Assumed I've a Customer.gwt.xml and a Manager.gwt.xml module. Manager inherits Customer because I want to use Customer's functionality and RF's proxy classes in Manager. Ok, those proxy classes could be also put into a Common.gwt.xml but let's omit this option for the moment. Now the problem is when I call the Manager view/module, I also see the Customer widget in the same view. However I just want to see the Manager widget when I call the Manager view and not the Customer widget which I want to call separately.
How should I handle this problem, how can I inherit functionality of Customer without being forced to explicitly hide Customer's widgets when I call Manager. How can I systematically choose/hide/override/specify the widgets which should be displayed when I call the Manager module.