As far as I know GIN automatically uses GWT.create() fallback when there is no binding specified. It works perfect when a dependency is injected in a constructor.
@Inject
public PresenterImpl(ResourceManager manager) {...}
Is it possible to initialize the same object using assisted factory?
I have tried, but GIN fails to find proper "implementation".
In other words I want to define a factory module builder with interface that returns ResourceManager
and initialize this object using factory.