mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
リネーム
This commit is contained in:
parent
310944f51e
commit
25cbc32ef9
|
@ -2,9 +2,7 @@ package one.nem.lacerta.source.file;
|
|||
|
||||
import android.graphics.Bitmap;
|
||||
|
||||
import org.eclipse.jgit.lib.Repository;
|
||||
|
||||
public interface RepoFileManager {
|
||||
public interface FileManager {
|
||||
|
||||
void initRepoDir();
|
||||
void addImageByIndex(Bitmap bitmap, int index);
|
|
@ -1,9 +1,15 @@
|
|||
package one.nem.lacerta.source.file.impl;
|
||||
|
||||
import android.graphics.Bitmap;
|
||||
import one.nem.lacerta.source.file.RepoFileManager;
|
||||
|
||||
public class RepoFileManagerImpl implements RepoFileManager{
|
||||
import java.nio.file.Path;
|
||||
|
||||
import one.nem.lacerta.source.file.FileManager;
|
||||
|
||||
public class FileManagerImpl implements FileManager {
|
||||
|
||||
private Path rootDir;
|
||||
|
||||
@Override
|
||||
public void initRepoDir() {
|
||||
|
||||
|
@ -18,4 +24,9 @@ public class RepoFileManagerImpl implements RepoFileManager{
|
|||
public void deleteImageByIndex(int index) {
|
||||
|
||||
}
|
||||
|
||||
// Internal
|
||||
private void createDir() {
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user