You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by Apache Wiki <wi...@apache.org> on 2005/11/11 15:59:41 UTC

[Myfaces Wiki] Update of "StudyGuide" by MikeKienenberger

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Myfaces Wiki" for change notification.

The following page has been changed by MikeKienenberger:
http://wiki.apache.org/myfaces/StudyGuide

------------------------------------------------------------------------------
  }}}
    * The other methods of this class are worth studying for more advanced purposes; this is where a lot of JSF customisation can occur.
      
+ javax.faces.component.!UIInput:
+   * Methods processDecodes, processValidators, and processUpdates shows how form data becomes model data through a process of conversion and validation.  For most components, This is where the real work mentioned above in org.apache.myfaces.lifecycle.!LifecycleImpl occurs during the Apply Values, Process Validations, and Update Model phases.    Note that data starts in a form, is loaded into a submitted value field on the component, is converted to a local value field on the component, and is copied into the backing bean.   Many conditions affect the outcome of this process, such as rendered state, required state, immediate state, conversion errors, and validation errors.