?? 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 + -