public static interface

AnnotationProvider.OnAnnotationUpdatedListener

com.pspdfkit.annotations.AnnotationProvider.OnAnnotationUpdatedListener
Known Indirect Subclasses

Summary

Public Methods
abstract void onAnnotationCreated(Annotation annotation)
Called when annotation has been created.
abstract void onAnnotationRemoved(Annotation annotation)
Called when existing annotation has been removed.
abstract void onAnnotationUpdated(Annotation annotation)
Called when existing annotation has changed.
abstract void onAnnotationZOrderChanged(int pageIndex, List<Annotation> oldOrder, List<Annotation> newOrder)
Called when the z-order of annotations has changed on a specified page.

Public Methods

public abstract void onAnnotationCreated (Annotation annotation)

Called when annotation has been created.

Parameters
annotation Annotation that has been created.

public abstract void onAnnotationRemoved (Annotation annotation)

Called when existing annotation has been removed.

Parameters
annotation Annotation that has been removed.

public abstract void onAnnotationUpdated (Annotation annotation)

Called when existing annotation has changed.

Parameters
annotation Annotation that has been changed.

public abstract void onAnnotationZOrderChanged (int pageIndex, List<Annotation> oldOrder, 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.