XMLメタデータを読み取るメソッド追加

This commit is contained in:
r-ca 2023-12-25 15:07:00 +09:00
parent f2ed0515f8
commit 4aefae6b51
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9
2 changed files with 14 additions and 25 deletions

View File

@ -6,6 +6,8 @@ import java.io.File;
import java.nio.file.Path; import java.nio.file.Path;
import java.util.List; import java.util.List;
import one.nem.lacerta.source.file.model.XmlMetaModel;
public interface FileManager { public interface FileManager {
Path getRootDir(); Path getRootDir();
@ -20,8 +22,7 @@ public interface FileManager {
Bitmap loadBitmap(Path path); Bitmap loadBitmap(Path path);
void removeBitmap(Path path); void removeBitmap(Path path);
// void saveFileAtCurrent(File file);
// File getFile(Path path);
// void removeFile(Path path);
XmlMetaModel getXmlMeta();
void saveXmlMeta(XmlMetaModel xmlMeta);
} }

View File

@ -16,6 +16,7 @@ import javax.inject.Inject;
import dagger.assisted.Assisted; import dagger.assisted.Assisted;
import dagger.assisted.AssistedInject; import dagger.assisted.AssistedInject;
import one.nem.lacerta.source.file.FileManager; import one.nem.lacerta.source.file.FileManager;
import one.nem.lacerta.source.file.model.XmlMetaModel;
public class FileManagerImpl implements FileManager { public class FileManagerImpl implements FileManager {
@ -104,27 +105,14 @@ public class FileManagerImpl implements FileManager {
} }
// @Override @Override
// public void saveFileAtCurrent(File file) { public XmlMetaModel getXmlMeta() {
// try { return null;
// Files.copy(file.toPath(), currentDir.resolve(file.getName())); }
// } catch (IOException e) {
// e.printStackTrace(); @Override
// } public void saveXmlMeta(XmlMetaModel xmlMeta) {
// }
// }
// @Override
// public File getFile(Path path) {
// // ファイルを取得する
// return path.toFile();
// }
//
// @Override
// public void removeFile(Path path) {
// // ファイルを削除する
// if (path.toFile().exists()) {
// path.toFile().delete(); // Resultを返す
// }
// }
} }