catalogloader.java

来自「这是我修读美国卡耐基梅隆大学Carnegie Mellon University」· Java 代码 · 共 25 行

JAVA
25
字号
import java.io.*;

/**
 * This interface declares a method for obtaining a product catalog
 * from a file.
 *
 * @author 张维
 * @version 1.0.0
 * @see Catalog
 */
public interface CatalogLoader  {

	/*
	 * Loads the information in the specified file into a product
	 * catalog and returns the catalog.
	 *
	 * @param filename  The name of a file that contains catalog information.
	 * @return a 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 + =
减小字号Ctrl + -
显示快捷键?