mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-26 09:43:15 +00:00
save/load/removeを追加 Impl WIP
This commit is contained in:
parent
302eccfdfe
commit
1eee31316a
|
@ -2,6 +2,7 @@ package one.nem.lacerta.source.file.impl;
|
||||||
|
|
||||||
import android.graphics.Bitmap;
|
import android.graphics.Bitmap;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.nio.file.DirectoryStream;
|
import java.nio.file.DirectoryStream;
|
||||||
import java.nio.file.Files;
|
import java.nio.file.Files;
|
||||||
|
@ -85,6 +86,7 @@ public class FileManagerImpl implements FileManager {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void saveBitmap(Path path, Bitmap bitmap) {
|
public void saveBitmap(Path path, Bitmap bitmap) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -96,4 +98,16 @@ public class FileManagerImpl implements FileManager {
|
||||||
public void removeBitmap(Path path) {
|
public void removeBitmap(Path path) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void saveFile(File file) {
|
||||||
|
// Internal
|
||||||
|
}
|
||||||
|
|
||||||
|
private void loadFile(File file) {
|
||||||
|
// Internal
|
||||||
|
}
|
||||||
|
|
||||||
|
private void removeFile(File file) {
|
||||||
|
// Internal
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user