Interface DocumentActionListener

  • All Implemented Interfaces:

    
    public interface DocumentActionListener
    
                        

    Handles PDF actions triggered inside the PDF document - these are usually things like button presses, form submission, etc.

    • 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
      abstract boolean onExecuteAction(@NonNull() Action action) Called when PDF action should be executed.
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • onExecuteAction

        @UiThread() abstract boolean onExecuteAction(@NonNull() Action action)

        Called when PDF action should be executed.

        Parameters:
        action - Action that should be executed.
        Returns:

        Should true if the action was handled and no further processing should happen. false if default handlers should handle the action.