📄 accounthome.java
字号:
/* * Generated by XDoclet - Do not edit! */package test.interfaces;/** * Home interface for Account. * @xdoclet-generated at 22-10-04 * @copyright The XDoclet Team * @author XDoclet * @version 1.2.2 */public interface AccountHome extends javax.ejb.EJBHome{ public static final String COMP_NAME="java:comp/env/ejb/Account"; public static final String JNDI_NAME="ejb/bank/Account"; public test.interfaces.Account create(test.interfaces.AccountValue data) throws javax.ejb.CreateException,java.rmi.RemoteException; public java.util.Collection findAll() throws javax.ejb.FinderException,java.rmi.RemoteException; public java.util.Collection findByOwner(test.interfaces.Customer owner) throws javax.ejb.FinderException,java.rmi.RemoteException; public java.util.Collection findLargeAccounts(int balance) throws javax.ejb.FinderException,java.rmi.RemoteException; public test.interfaces.Account findByPrimaryKey(test.interfaces.AccountPK pk) throws javax.ejb.FinderException,java.rmi.RemoteException; /** * Transfer money */ public void transfer(test.interfaces.Account from,test.interfaces.Account to,float amount) throws java.rmi.RemoteException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -