⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 librarycatalogloader.java

📁 ssd3的教程 是我们老师给我们的 纯英文 有兴趣的可以
💻 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 + -