warehousehome.java
来自「一个java写的加密算法」· Java 代码 · 共 29 行
JAVA
29 行
/* * Copyright 2004-2005 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */package samples.jdbc.transactions.ejb;import java.rmi.RemoteException;import javax.ejb.*;/** * Home interface for the Warehouse EJB. Clients generally use home interface * to obtain references to the bean's remote interface. * */public interface WarehouseHome extends EJBHome { /** * Gets a reference to the remote interface to the Warehouse bean. * @exception throws CreateException and RemoteException. * */ public Warehouse create() throws RemoteException, CreateException;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?