public static interface

ThumbnailsViewAdapter.EditPagesListener

com.pdftron.pdf.controls.ThumbnailsViewAdapter.EditPagesListener
Known Indirect Subclasses

Class Overview

Callback interface to be invoked when pages of the document have been edited.

Summary

Public Methods
abstract void onPageMoved(int fromPageNum, int toPageNum)
Called when a page was moved to a new position
abstract void onPagesAdded(List<Integer> pageList)
Called when new pages were added to the document.
abstract void onPagesMoved(List<Integer> fromPages, int toPageNum)
Called when pages were moved to a new position

Public Methods

public abstract void onPageMoved (int fromPageNum, int toPageNum)

Called when a page was moved to a new position

Parameters
fromPageNum The page number from which the page moves
toPageNum The page number to which the page moves

public abstract void onPagesAdded (List<Integer> pageList)

Called when new pages were added to the document.

Parameters
pageList The list of pages added to the document

public abstract void onPagesMoved (List<Integer> fromPages, int toPageNum)

Called when pages were moved to a new position

Parameters
fromPages The page numbers from which the pages move
toPageNum The page number to which the page moves