From 92b48336ac8845ef0e1880d41877d291f014241f Mon Sep 17 00:00:00 2001 From: r-ca Date: Mon, 25 Dec 2023 13:30:46 +0900 Subject: [PATCH] =?UTF-8?q?FileManager=E3=81=AB=E6=99=AE=E9=80=9A=E3=81=AE?= =?UTF-8?q?=E3=83=95=E3=82=A1=E3=82=A4=E3=83=AB=E8=AA=AD=E3=81=BF=E6=9B=B8?= =?UTF-8?q?=E3=81=8D=E3=82=92=E8=BF=BD=E5=8A=A0=20WIP?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../one/nem/lacerta/source/file/FileManager.java | 4 ++++ .../source/file/impl/FileManagerImpl.java | 16 ++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/source/src/main/java/one/nem/lacerta/source/file/FileManager.java b/source/src/main/java/one/nem/lacerta/source/file/FileManager.java index d3951a7e..82b503bc 100644 --- a/source/src/main/java/one/nem/lacerta/source/file/FileManager.java +++ b/source/src/main/java/one/nem/lacerta/source/file/FileManager.java @@ -20,4 +20,8 @@ public interface FileManager { Bitmap loadBitmap(Path path); void removeBitmap(Path path); + void saveFileAtCurrent(File file); + File getFile(Path path); + void removeFile(Path path); + } diff --git a/source/src/main/java/one/nem/lacerta/source/file/impl/FileManagerImpl.java b/source/src/main/java/one/nem/lacerta/source/file/impl/FileManagerImpl.java index 5a8ffa64..43778c5b 100644 --- a/source/src/main/java/one/nem/lacerta/source/file/impl/FileManagerImpl.java +++ b/source/src/main/java/one/nem/lacerta/source/file/impl/FileManagerImpl.java @@ -103,4 +103,20 @@ public class FileManagerImpl implements FileManager { public void removeBitmap(Path path) { } + + @Override + public void saveFileAtCurrent(File file) { + + } + + @Override + public File getFile(Path path) { + return null; + } + + @Override + public void removeFile(Path path) { + + } + }