mirror of
				https://github.com/lacerta-doc/Lacerta.git
				synced 2025-11-04 00:40:49 +00:00 
			
		
		
		
	既存の実装を削除
This commit is contained in:
		
							parent
							
								
									4a66ed786d
								
							
						
					
					
						commit
						3ed835ef2f
					
				@ -12,48 +12,5 @@ import java.util.List;
 | 
				
			|||||||
/** @noinspection unused*/
 | 
					/** @noinspection unused*/
 | 
				
			||||||
public interface FileManager {
 | 
					public interface FileManager {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    Path getRootDir();
 | 
					 | 
				
			||||||
    Path getCurrentDir();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    void changeDir(String dirName); //cd
 | 
					 | 
				
			||||||
    void changeDir(Path path); //cd
 | 
					 | 
				
			||||||
    void backDir(); //cd ..
 | 
					 | 
				
			||||||
    void backRootDir(); //cd /
 | 
					 | 
				
			||||||
    List<Path> getList();
 | 
					 | 
				
			||||||
    void createDir(String dirName);
 | 
					 | 
				
			||||||
    void createDir(Path path);
 | 
					 | 
				
			||||||
    void removeDir(String dirName);
 | 
					 | 
				
			||||||
    void removeDir(Path path);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    File createFile(String fileName);
 | 
					 | 
				
			||||||
    void removeFile(String fileName);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    File getFile(String fileName);
 | 
					 | 
				
			||||||
    File getFile(Path path);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    String loadText(String fileName);
 | 
					 | 
				
			||||||
    String loadText(Path path);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    void saveText(String text, String fileName);
 | 
					 | 
				
			||||||
    void saveText(String text, Path path);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    void saveDocument(Document document, String fileName);
 | 
					 | 
				
			||||||
    void saveDocument(Document document, Path path);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Document loadDocument(String fileName);
 | 
					 | 
				
			||||||
    Document loadDocument(Path path);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    boolean isExist(Path path);
 | 
					 | 
				
			||||||
    boolean isExist(String fileName);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    void autoCreateDir(Path path);
 | 
					 | 
				
			||||||
    void autoCreateDir(String dirName);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    void autoCreateToCurrentDir();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    void saveBitmapAtCurrent(Bitmap bitmap, String fileName);
 | 
					 | 
				
			||||||
    Bitmap loadBitmap(Path path);
 | 
					 | 
				
			||||||
    void removeBitmap(Path path);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user