/**
  * Set the {@link ValueBinding} used to calculate the value for the specified attribute if any.
  *
  * @param name Name of the attribute for which to set a {@link ValueBinding}
  * @param binding The {@link ValueBinding} to set, or <code>null</code> to remove any currently
  *     set {@link ValueBinding}
  * @exception NullPointerException if <code>name</code> is <code>null</code>
  * @exception IllegalArgumentException if <code>name</code> is not a valid attribute of this
  *     validator
  * @deprecated
  */
 public void setValueBinding(String name, ValueBinding binding) {
   ValidatorUtils.setValueBinding(_facesBean, name, binding);
 }