public static interface

FormManager.OnFormElementViewUpdatedListener

com.pspdfkit.ui.special_mode.manager.FormManager.OnFormElementViewUpdatedListener
Known Indirect Subclasses

Class Overview

Listener for form element view updates - validation, contents of the view changed etc.

Summary

Public Methods
abstract void onFormElementValidationFailed(FormElement formElement, String validationError)
Called when form element validation fails.
abstract void onFormElementValidationSuccess(FormElement formElement)
Called when form element validation succeeded.
abstract void onFormElementViewUpdated(FormElement formElement)
Called whenever form element view gets updated, listeners should update their UI accordingly.

Public Methods

public abstract void onFormElementValidationFailed (FormElement formElement, String validationError)

Called when form element validation fails.

Parameters
formElement Form element that failed to validate.
validationError Localized validation error.

public abstract void onFormElementValidationSuccess (FormElement formElement)

Called when form element validation succeeded.

Parameters
formElement Form element that failed to validate.

public abstract void onFormElementViewUpdated (FormElement formElement)

Called whenever form element view gets updated, listeners should update their UI accordingly.