The method updates the form with the values from the given object.
The method call is basically equivalent to the pipelet UpdateFormWithObject.
The method not only copies the value, it also binds the object to the form. Binding means that the form keeps the
information from which objects the values were taken. This can be used for two purposes:
- for lists it makes it easier in the code to find the associated object, for example in case of a related
action, and
- it allows to copy back the values from the form into the object (see accept()).
Because of this bind behavior, the operation is also sometimes called a bind-operation.