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.
-
-
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. -
-
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.
-
-
-
-