mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
close()を追加 WIP
This commit is contained in:
parent
e3186249a0
commit
3bfcc9fd63
|
@ -18,4 +18,6 @@ public interface DocumentProcessor {
|
||||||
Bitmap getPageAtIndex(int index);
|
Bitmap getPageAtIndex(int index);
|
||||||
int getPageCount();
|
int getPageCount();
|
||||||
|
|
||||||
|
void close();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,4 +77,9 @@ public class DocumentProcessorImpl implements DocumentProcessor{
|
||||||
public int getPageCount() {
|
public int getPageCount() {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void close() {
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user