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

📄 catalogloader.java

📁 SSD3 icarnegie FileCatalogLoader
💻 JAVA
字号:
import java.io.*;

/**
 * This interface declares a method for obtaining a products catalog.
 *
 * @author iCarnegie
 * @version 1.1.0
 * @see Catalog
 */
public interface CatalogLoader  {

	/*
	 * Loads the product catalog with the data in the specified file.
	 *
	 * @param filename  The name of a file that contains catalog
	 *                  information.
	 * @return the product 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
	 *                                     badly-formed data.
	 */
	Catalog loadCatalog(String fileName)
		throws FileNotFoundException, IOException, DataFormatException;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -