Interface NewPageDialog.Callback

  • All Implemented Interfaces:

    
    public interface NewPageDialog.Callback
    
                        

    This listener interface needs to be implemented by any class that wishes to handle new page creation event.

    • 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 void onDialogConfirmed(@NonNull() NewPage newPage) Called when the user confirmed the dialog.
      abstract void onDialogCancelled() Called when the user cancelled the dialog.
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • onDialogConfirmed

         abstract void onDialogConfirmed(@NonNull() NewPage newPage)

        Called when the user confirmed the dialog.

        Parameters:
        newPage - The page configuration created with the dialog.
      • onDialogCancelled

         abstract void onDialogCancelled()

        Called when the user cancelled the dialog.