initメソッド作成

This commit is contained in:
r-ca 2023-12-25 15:03:04 +09:00
parent 3affd2dd2f
commit aa0728e97b
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9
2 changed files with 6 additions and 1 deletions

View File

@ -19,5 +19,6 @@ public interface DocumentProcessor {
int getPageCount(); int getPageCount();
void close(); void close();
void init();
} }

View File

@ -32,7 +32,11 @@ public class DocumentProcessorImpl implements DocumentProcessor{
@Inject @Inject
LacertaLogger logger; LacertaLogger logger;
// Internal utils @Override
public void init() {
logger.debug("init", "called");
// TODO-rca: ドキュメントの初期化処理
}
@Override @Override
public void addNewPageToLast(Bitmap bitmap) { public void addNewPageToLast(Bitmap bitmap) {