mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-26 17:53:14 +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.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);
|
||||||
}
|
}
|
||||||
|
|
|
@ -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を返す?
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user