diff --git a/processor/src/main/java/one/nem/lacerta/processor/DocumentProcessor.java b/processor/src/main/java/one/nem/lacerta/processor/DocumentProcessor.java index abca8a84..d5584c24 100644 --- a/processor/src/main/java/one/nem/lacerta/processor/DocumentProcessor.java +++ b/processor/src/main/java/one/nem/lacerta/processor/DocumentProcessor.java @@ -7,9 +7,9 @@ public interface DocumentProcessor { // ページ操作 void addNewPageToLast(Bitmap bitmap) throws Exception; void addNewPagesToLast(Bitmap[] bitmaps) throws Exception; - void addNewPageAfterIndex(Bitmap bitmap, int index); - void addNewPageBeforeIndex(Bitmap bitmap, int index); - void removePageAtIndex(int index); + void addNewPageAfterIndex(Bitmap bitmap, int index) throws Exception; + void addNewPageBeforeIndex(Bitmap bitmap, int index) throws Exception; + void removePageAtIndex(int index) throws Exception; // 更新 void updatePageAtIndex(Bitmap bitmap, int index);