📄 categorydetailsbean.java
字号:
package com.jdon.estore.catalog;import javax.ejb.*;abstract public class CategoryDetailsBean implements EntityBean { EntityContext entityContext; public java.lang.String ejbCreate(java.lang.String catId, java.lang.String name, java.lang.String description) throws CreateException { setCatId(catId); setName(name); setDescription(description); return null; } public void ejbPostCreate(java.lang.String catId, java.lang.String name, java.lang.String description) throws CreateException { /**@todo Complete this method*/ } public void ejbRemove() throws RemoveException { /**@todo Complete this method*/ } public abstract void setCatId(java.lang.String catId); public abstract void setName(java.lang.String name); public abstract void setDescription(java.lang.String description); public abstract java.lang.String getCatId(); public abstract java.lang.String getName(); public abstract java.lang.String getDescription(); public void ejbLoad() { /**@todo Complete this method*/ } public void ejbStore() { /**@todo Complete this method*/ } public void ejbActivate() { /**@todo Complete this method*/ } public void ejbPassivate() { /**@todo Complete this method*/ } public void unsetEntityContext() { this.entityContext = null; } public void setEntityContext(EntityContext entityContext) { this.entityContext = entityContext; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -