mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
パーサーを依存関係に追加
This commit is contained in:
parent
bd1a1d56cb
commit
73f553cff3
|
@ -2,7 +2,6 @@ package one.nem.lacerta.processor.impl;
|
|||
|
||||
import android.graphics.Bitmap;
|
||||
|
||||
import java.io.File;
|
||||
import java.nio.file.Path;
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -11,14 +10,16 @@ import javax.inject.Inject;
|
|||
import one.nem.lacerta.processor.DocumentProcessor;
|
||||
|
||||
import one.nem.lacerta.model.document.DocumentDetail;
|
||||
import one.nem.lacerta.model.document.DocumentMeta;
|
||||
|
||||
import one.nem.lacerta.processor.model.XmlMetaModel;
|
||||
import one.nem.lacerta.model.document.internal.XmlMetaModel;
|
||||
import one.nem.lacerta.source.file.FileManager;
|
||||
import one.nem.lacerta.source.file.factory.FileManagerFactory;
|
||||
|
||||
import one.nem.lacerta.utils.LacertaLogger;
|
||||
|
||||
import one.nem.lacerta.utils.XmlMetaParser;
|
||||
|
||||
|
||||
public class DocumentProcessorImpl implements DocumentProcessor{
|
||||
|
||||
// Magic Numbers
|
||||
|
@ -35,11 +36,14 @@ public class DocumentProcessorImpl implements DocumentProcessor{
|
|||
@Inject
|
||||
LacertaLogger logger;
|
||||
|
||||
@Inject
|
||||
XmlMetaParser xmlMetaParser;
|
||||
|
||||
@Override
|
||||
public void init() {
|
||||
logger.debug("init", "called");
|
||||
// XMLメタデータの取得/生成
|
||||
|
||||
FileManager fileManager = fileManagerFactory.create(documentDetail.getPath().getFullPath());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue
Block a user