From 0f8b71e739f6005ea9d5abbe7bda8d5d1ce48526 Mon Sep 17 00:00:00 2001 From: r-ca Date: Tue, 9 Jan 2024 12:31:57 +0900 Subject: [PATCH] =?UTF-8?q?Impl=E7=94=9F=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source/file/impl/FileManagerImpl.java | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) 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 cf3192c8..27b62e2f 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 @@ -121,6 +121,11 @@ public class FileManagerImpl implements FileManager { return null; } + @Override + public FileManager getCurrentInstance() { + return null; + } + @Override public FileManager enableAutoCreateParent() { this.autoCreateParent = true; @@ -164,4 +169,44 @@ public class FileManagerImpl implements FileManager { } return this.setPath(resolvedPath); } + + @Override + public FileManager saveXml(Document document, String fileName) throws IOException { + return null; + } + + @Override + public FileManager saveXml(Document document) throws IOException { + return null; + } + + @Override + public FileManager saveBitmap(Bitmap bitmap, String fileName) throws IOException { + return null; + } + + @Override + public FileManager saveBitmap(Bitmap bitmap) throws IOException { + return null; + } + + @Override + public Document loadXml(String fileName) throws IOException { + return null; + } + + @Override + public Document loadXml() throws IOException { + return null; + } + + @Override + public Bitmap loadBitmap(String fileName) throws IOException { + return null; + } + + @Override + public Bitmap loadBitmap() throws IOException { + return null; + } }