📄 16c.txt
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -