Bind this class to indicate that you wish to globally disable automatic binding in classes derived from {@link HandlerContainerImpl}, such as {@link PresenterWidget} or {@link Presenter}. Simply bind it like this:
bind(AutobindDisable.class).toInstance(new AutobindDisable(true));
If you do not bind this class then autobinding is controlled on a case-by-case basis using the {@link HandlerContainerImpl}'s constructors.
Disabling automatic binding can be useful in unit tests, for example.
@author Philippe Beaudoin