📄 entitysupport.java
字号:
/* * Copyright 1999 by dreamBean Software, * All rights reserved. */package transaction.entity;import java.rmi.RemoteException;import javax.ejb.EntityBean;import javax.ejb.EntityContext;import javax.ejb.RemoveException;import transaction.EnterpriseSupport;/** * * @see <related> * @author $Author: schaefera $ * @version $Revision: 1.1 $ */public abstract class EntitySupport extends EnterpriseSupport implements EntityBean{ // Constants ----------------------------------------------------- // Attributes ---------------------------------------------------- protected EntityContext entityCtx; // Static -------------------------------------------------------- // Constructors -------------------------------------------------- // Public -------------------------------------------------------- public void setEntityContext(EntityContext ctx) throws RemoteException { entityCtx = ctx; } public void unsetEntityContext() throws RemoteException { } public void ejbActivate() throws RemoteException { } public void ejbPassivate() throws RemoteException { } public void ejbLoad() throws RemoteException { } public void ejbStore() throws RemoteException { } public void ejbRemove() throws RemoteException, RemoveException { }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -