📄 librarycatalogloader.java
字号:
/**
* This interface declares a method for obtaining a library catalog
* from a file.
*
* @author author name
* @version 1.1.0
* @see Catalog
*/
public interface LibraryCatalogLoader {
/**
* Loads the information in the specified file into a library
* catalog and returns the catalog.
*
* @param filename the name of the file that contains the
* catalog data.
* @return a {@link Catalog}.
* @throws FileNotFoundException if the specified file does not
* exist.
* @throws IOException if there is an error reading the
* information in the specified file.
* @throws DataFormatException if the file contains malformed
* data.
*/
Catalog loadCatalog(String filename) throws IOException,
FileNotFoundException, DataFormatException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -