mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-26 17:53:14 +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 android.graphics.Bitmap;
|
||||||
|
|
||||||
import org.eclipse.jgit.lib.Repository;
|
public interface FileManager {
|
||||||
|
|
||||||
public interface RepoFileManager {
|
|
||||||
|
|
||||||
void initRepoDir();
|
void initRepoDir();
|
||||||
void addImageByIndex(Bitmap bitmap, int index);
|
void addImageByIndex(Bitmap bitmap, int index);
|
|
@ -1,9 +1,15 @@
|
||||||
package one.nem.lacerta.source.file.impl;
|
package one.nem.lacerta.source.file.impl;
|
||||||
|
|
||||||
import android.graphics.Bitmap;
|
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
|
@Override
|
||||||
public void initRepoDir() {
|
public void initRepoDir() {
|
||||||
|
|
||||||
|
@ -18,4 +24,9 @@ public class RepoFileManagerImpl implements RepoFileManager{
|
||||||
public void deleteImageByIndex(int index) {
|
public void deleteImageByIndex(int index) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Internal
|
||||||
|
private void createDir() {
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user