createDefaultParameterBinding(String parameterName) Used by subclasses to create a default binding to a property of the container matching the
component id.
processSubmission(FormSupport formSupport, String elementName) Method implemented by subclasses to actually do the work of processing the submission of the
form.
final protectedBinding createDefaultParameterBinding(String parameterName)(Code)
Used by subclasses to create a default binding to a property of the container matching the
component id.
a binding to the property, or null if the container does not have a correspondingproperty
Method implemented by subclasses to actually do the work of processing the submission of the
form. The element's elementName property will already have been set. This method is only
invoked if the field is not
AbstractField.isDisabled() disabled .
Parameters: formSupport - support for the form submission, used toFormSupport.getParameterValue(String) obtain submitted parameter values.Passing this value in saves subclasses from having to (re)inject it. Parameters: elementName - the name of the element (used to find the correct parameter in the request)