Method Summary |
|
public Method | getComponentGetter(ComponentType component) This is the name of the method that retrieves the value from the component. |
public Method | getComponentSetter(ComponentType component) This is the name of the method that sets the value on the component. |
public boolean | getDefaultReadOnly() This method provides the default read only state for this component. |
public boolean | isPopulateHandleable(ComponentType component, ModelType modelPropertyValue) This method should check for certain conditions that determine whether population should
even occur for this component. |
public boolean | isUpdateHandleable(ComponentType component) This method should check for certain conditions that determine whether an update of the model
should even occur from this component. |
public void | postProcessPopulate(ComponentType component) This method handles post processing of a populate. |
public void | postProcessUpdate(ComponentType component) This method handles post processing of an update. |
public UIType | preProcessPopulate(ComponentType component, ModelType modelPropertyValue)
Right up front let's make it clear that you should not use this method for performing type conversion
This method is meant to massage existing data into a state that can be converted. |
public ModelType | preProcessUpdate(ComponentType component, UIType modelPropertyValue)
Right up front let's make it clear that you should not use this method for performing type conversion
Just like @see #preProcessPopulate the preProcessUpdate method is meant to massage data
into a state that can be converted. |