📄 basicentitybean.java
字号:
package com.wiley.compBooks.EJwithUML.Base.EjbUtil;
import java.rmi.*;
import javax.ejb.*;
import javax.naming.*;
/**
* An adapter base class for all entity beans. it provides default
* implementations for all the required methods of the EntityBean interface.
*/
public class BasicEntityBean implements EntityBean
{
protected EntityContext context;
public BasicEntityBean()
{
}
public void setEntityContext(EntityContext context) throws RemoteException
{
this.context = context;
}
public void unsetEntityContext() throws RemoteException
{
this.context = null;
}
public void ejbPassivate() throws RemoteException
{
}
public void ejbRemove() throws RemoteException
{
}
public void ejbLoad() throws RemoteException
{
}
public void ejbStore() throws RemoteException
{
}
public void ejbActivate() throws RemoteException
{
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -