mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
XMLメタデータを読み取るメソッド追加
This commit is contained in:
parent
f2ed0515f8
commit
4aefae6b51
|
@ -6,6 +6,8 @@ import java.io.File;
|
|||
import java.nio.file.Path;
|
||||
import java.util.List;
|
||||
|
||||
import one.nem.lacerta.source.file.model.XmlMetaModel;
|
||||
|
||||
public interface FileManager {
|
||||
|
||||
Path getRootDir();
|
||||
|
@ -20,8 +22,7 @@ public interface FileManager {
|
|||
Bitmap loadBitmap(Path path);
|
||||
void removeBitmap(Path path);
|
||||
|
||||
// void saveFileAtCurrent(File file);
|
||||
// File getFile(Path path);
|
||||
// void removeFile(Path path);
|
||||
|
||||
XmlMetaModel getXmlMeta();
|
||||
void saveXmlMeta(XmlMetaModel xmlMeta);
|
||||
}
|
||||
|
|
|
@ -16,6 +16,7 @@ import javax.inject.Inject;
|
|||
import dagger.assisted.Assisted;
|
||||
import dagger.assisted.AssistedInject;
|
||||
import one.nem.lacerta.source.file.FileManager;
|
||||
import one.nem.lacerta.source.file.model.XmlMetaModel;
|
||||
|
||||
public class FileManagerImpl implements FileManager {
|
||||
|
||||
|
@ -104,27 +105,14 @@ public class FileManagerImpl implements FileManager {
|
|||
|
||||
}
|
||||
|
||||
// @Override
|
||||
// public void saveFileAtCurrent(File file) {
|
||||
// try {
|
||||
// Files.copy(file.toPath(), currentDir.resolve(file.getName()));
|
||||
// } catch (IOException e) {
|
||||
// e.printStackTrace();
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public File getFile(Path path) {
|
||||
// // ファイルを取得する
|
||||
// return path.toFile();
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public void removeFile(Path path) {
|
||||
// // ファイルを削除する
|
||||
// if (path.toFile().exists()) {
|
||||
// path.toFile().delete(); // Resultを返す?
|
||||
// }
|
||||
// }
|
||||
@Override
|
||||
public XmlMetaModel getXmlMeta() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void saveXmlMeta(XmlMetaModel xmlMeta) {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user