Interface AnnotationCreationInspectorController
-
- All Implemented Interfaces:
-
com.pspdfkit.ui.special_mode.controller.AnnotationInspectorController
public interface AnnotationCreationInspectorController implements AnnotationInspectorController
Interface for annotation inspector shown when creating annotations.
-
-
Method Summary
Modifier and Type Method Description abstract void
bindAnnotationCreationController(@NonNull() AnnotationCreationController controller)
Binds controller for managing annotation creation mode. abstract void
unbindAnnotationCreationController()
Unbinds controller for managing annotation creation mode. abstract void
onSaveInstanceState(@NonNull() Bundle outState)
Save annotation inspector state. abstract void
onRestoreInstanceState(@NonNull() Bundle savedState)
Restore annotation inspector state. -
-
Method Detail
-
bindAnnotationCreationController
abstract void bindAnnotationCreationController(@NonNull() AnnotationCreationController controller)
Binds controller for managing annotation creation mode.
- Parameters:
controller
- Annotation creation mode controller provided when entering annotation creation mode.
-
unbindAnnotationCreationController
abstract void unbindAnnotationCreationController()
Unbinds controller for managing annotation creation mode.
-
onSaveInstanceState
abstract void onSaveInstanceState(@NonNull() Bundle outState)
Save annotation inspector state.
-
onRestoreInstanceState
abstract void onRestoreInstanceState(@NonNull() Bundle savedState)
Restore annotation inspector state.
-
-
-
-