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

📄 catalog.java

📁 EJB3.0请一定要上载质量高而且本站没有的源码
💻 JAVA
字号:
package examples.shop.logic;import java.util.*;import examples.shop.impl.entity.Product;/** * This is the Catalog business interface. */public interface Catalog  {    	/**     * @return a vector of Products     */    public List<Product> getProductList();        /**     * @return a Product for the given product id.     */    public Product getProduct(String productId);        /**     * Add a new product to the catalog     * @param product     */    public void addProduct(Product product);        }

⌨️ 快捷键说明

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