16c.txt

来自「一本关于JBuilder 应用开发的书籍,希望大家喜欢,其实我没看过的,」· 文本 代码 · 共 40 行

TXT
40
字号
package bank;
import java.rmi.*;
import javax.ejb.*;
public class CheckingAccount implements EntityBean 
{
  EntityContext entityContext;
  public String ejbCreate() throws CreateException, RemoteException 
{
    /**@todo: Implement this method*/
    return null;
  }
  public void ejbPostCreate() throws CreateException, RemoteException 
{
  }
  public void ejbLoad() throws RemoteException 
{
  }
  public void ejbStore() throws RemoteException
 {
  }
  public void ejbRemove() throws RemoveException, RemoteException
 {
  }
  public void ejbActivate() throws RemoteException
 {
  }
  public void ejbPassivate() throws RemoteException
 {
  }
  public void setEntityContext(EntityContext entityContext) throws RemoteException
 {
    this.entityContext = entityContext;
  }
  public void unsetEntityContext() throws RemoteException
 {
    entityContext = null;
  }
}

⌨️ 快捷键说明

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