Interface AnnotationManager.OnAnnotationCreationModeChangeListener
-
- All Implemented Interfaces:
public interface AnnotationManager.OnAnnotationCreationModeChangeListener
Listener for annotation creation mode enter/exit.
-
-
Method Summary
Modifier and Type Method Description abstract void
onEnterAnnotationCreationMode(@NonNull() AnnotationCreationController controller)
Called when the annotation creation mode has been entered. abstract void
onChangeAnnotationCreationMode(@NonNull() AnnotationCreationController controller)
Called when the annotation creation mode has changed, meaning another annotation type is being selected for creation. abstract void
onExitAnnotationCreationMode(@NonNull() AnnotationCreationController controller)
Called when the annotation creation mode has been exited. -
-
Method Detail
-
onEnterAnnotationCreationMode
abstract void onEnterAnnotationCreationMode(@NonNull() AnnotationCreationController controller)
Called when the annotation creation mode has been entered.
- Parameters:
controller
- Provided controller for managing annotation creation mode.
-
onChangeAnnotationCreationMode
abstract void onChangeAnnotationCreationMode(@NonNull() AnnotationCreationController controller)
Called when the annotation creation mode has changed, meaning another annotation type is being selected for creation. Provided controller holds all the new data.
- Parameters:
controller
- Provided controller for managing annotation creation mode.
-
onExitAnnotationCreationMode
abstract void onExitAnnotationCreationMode(@NonNull() AnnotationCreationController controller)
Called when the annotation creation mode has been exited.
- Parameters:
controller
- Provided controller for managing annotation creation mode.
-
-
-
-