close()を追加 WIP

This commit is contained in:
r-ca 2023-12-25 14:55:02 +09:00
parent e3186249a0
commit 3bfcc9fd63
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9
2 changed files with 7 additions and 0 deletions

View File

@ -18,4 +18,6 @@ public interface DocumentProcessor {
Bitmap getPageAtIndex(int index); Bitmap getPageAtIndex(int index);
int getPageCount(); int getPageCount();
void close();
} }

View File

@ -77,4 +77,9 @@ public class DocumentProcessorImpl implements DocumentProcessor{
public int getPageCount() { public int getPageCount() {
return 0; return 0;
} }
@Override
public void close() {
}
} }