Package com.pspdfkit.ui.settings
Interface SettingsDialogListener
-
- All Implemented Interfaces:
public interface SettingsDialogListener
Listener interface passed to the SettingsDialog to observe the dialog.
-
-
Method Summary
Modifier and Type Method Description Unit
onSettingsClose()
This method is always being called when the settings dialog is about to close, regardless if it was by the close, back or save button abstract Unit
onSettingsSave(SettingsOptionsĀ changedOptions)
Notifies that the dialog's save button was clicked and the changedOptions should become effective. -
-
Method Detail
-
onSettingsClose
Unit onSettingsClose()
This method is always being called when the settings dialog is about to close, regardless if it was by the close, back or save button
-
onSettingsSave
abstract Unit onSettingsSave(SettingsOptionsĀ changedOptions)
Notifies that the dialog's save button was clicked and the changedOptions should become effective. This method is called after onSettingsClose
-
-
-
-