mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
configの書き込みを実装
This commit is contained in:
parent
3efaf30b95
commit
37497cb1ea
|
@ -22,7 +22,7 @@ public interface FileManager {
|
|||
Document readXml();
|
||||
|
||||
// Configure
|
||||
FileManager enableAutoCreate();
|
||||
FileManager enableAutoCreateParent();
|
||||
FileManager disableRootDirCheck();
|
||||
|
||||
FileManager setRootDir(Path rootDir);
|
||||
|
|
|
@ -32,7 +32,7 @@ public class FileManagerImpl implements FileManager {
|
|||
// variables
|
||||
private Path rootDir;
|
||||
private Path path;
|
||||
private boolean autoCreate = false;
|
||||
private boolean autoCreateParent = false;
|
||||
private boolean disableRootDirCheck = false;
|
||||
|
||||
|
||||
|
@ -101,8 +101,8 @@ public class FileManagerImpl implements FileManager {
|
|||
}
|
||||
|
||||
@Override
|
||||
public FileManager enableAutoCreate() {
|
||||
this.autoCreate = true;
|
||||
public FileManager enableAutoCreateParent() {
|
||||
this.autoCreateParent = true;
|
||||
return this;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user