📄 shopcommodityprocejavabean.java~1~
字号:
package flowershoporder.ejb;import java.rmi.*;import javax.ejb.*;public class ShopCommodityProcEJavaBean implements EntityBean { EntityContext entityContext; public String ejbCreate() throws CreateException { /**@todo Implement this method*/ return null; } public void ejbPostCreate() throws CreateException { } public void ejbLoad() { } public void ejbStore() { } public void ejbRemove() throws RemoveException { } public void ejbActivate() { } public void ejbPassivate() { } public void setEntityContext(EntityContext entityContext) { this.entityContext = entityContext; } public void unsetEntityContext() { entityContext = null; } public String ejbFindByPrimaryKey(String primKey) throws ObjectNotFoundException { /**@todo Implement this method*/ return null; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -