Interface FormManager.OnFormElementSelectedListener

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      boolean onPrepareFormElementSelection(@NonNull() FormElement formElement) Called immediately before form element is going to be selected.
      abstract void onFormElementSelected(@NonNull() FormElement formElement) Called when form element gets selected.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • onPrepareFormElementSelection

         boolean onPrepareFormElementSelection(@NonNull() FormElement formElement)

        Called immediately before form element is going to be selected.

        Parameters:
        formElement - Form element that is being selected.
        Returns:

        true when you want to proceed with the selection. Returning false will prevent form element from being selected.

      • onFormElementSelected

         abstract void onFormElementSelected(@NonNull() FormElement formElement)

        Called when form element gets selected.

        Parameters:
        formElement - Form element that is being selected.