Instantiate a PresenterWidget (GWTP) manually
问题 i am new to GWT, GWTP. I have a PresenterWidget which gets instantiated multiple times and gets added to a slot. I want to define the amount of instances programmatically. I only know that I make a new Instance of the Widget by Injecting it. @Inject MyWidgetPresenter first; @Inject MyWidgetPresenter second; // ... Can I instantiate it with new? how do instantiate the view? I tried to use a composite because it seemed to be the smartest solution, because it doesnt contain much logic anyway.