Interface AnnotationProvider.OnAnnotationUpdatedListener

    • 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
    • Constructor Detail

    • Method Detail

      • onAnnotationCreated

         abstract void onAnnotationCreated(@NonNull() Annotation annotation)

        Called when annotation has been created.

        Parameters:
        annotation - Annotation that has been created.
      • onAnnotationUpdated

         abstract void onAnnotationUpdated(@NonNull() Annotation annotation)

        Called when existing annotation has changed.

        Parameters:
        annotation - Annotation that has been changed.
      • onAnnotationRemoved

         abstract void onAnnotationRemoved(@NonNull() Annotation annotation)

        Called when existing annotation has been removed.

        Parameters:
        annotation - Annotation that has been removed.
      • onAnnotationZOrderChanged

         abstract void onAnnotationZOrderChanged(int pageIndex, @NonNull() List<Annotation> oldOrder, @NonNull() List<Annotation> newOrder)

        Called when the z-order of annotations has changed on a specified page.

        Parameters:
        pageIndex - Index of the page where the z-order has changed.
        oldOrder - The old order of annotations on the page.
        newOrder - The new order of annotations on the page.