mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
initメソッド作成
This commit is contained in:
parent
3affd2dd2f
commit
aa0728e97b
|
@ -19,5 +19,6 @@ public interface DocumentProcessor {
|
|||
int getPageCount();
|
||||
|
||||
void close();
|
||||
void init();
|
||||
|
||||
}
|
||||
|
|
|
@ -32,7 +32,11 @@ public class DocumentProcessorImpl implements DocumentProcessor{
|
|||
@Inject
|
||||
LacertaLogger logger;
|
||||
|
||||
// Internal utils
|
||||
@Override
|
||||
public void init() {
|
||||
logger.debug("init", "called");
|
||||
// TODO-rca: ドキュメントの初期化処理
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addNewPageToLast(Bitmap bitmap) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user