/**
  * Unbinds UI controls from their ridgets in the controller.
  *
  * @param controller The controller which holds the ridgets.
  */
 public void unbind(IController controller) {
   bindingManager.unbind(controller, uiControls);
 }
 /**
  * Injects the mapped ridgets for the uiControls in the controller.
  *
  * @param controller The controller which gets the ridgets injected.
  */
 public void injectRidgets(IController controller) {
   bindingManager.injectRidgets(controller, uiControls);
 }