customerbean.java~17~
来自「用j2ee开发的一个旅店管理系统」· JAVA~17~ 代码 · 共 45 行
JAVA~17~
45 行
package com.xc.hotelmanager.hotel.control.entity;import javax.ejb.*;abstract public class CustomerBean implements EntityBean { EntityContext entityContext; public java.lang.String ejbCreate(java.lang.String cid) throws CreateException { setCid(cid); return null; } public void ejbPostCreate(java.lang.String cid) throws CreateException { /**@todo Complete this method*/ } public void ejbRemove() throws RemoveException { /**@todo Complete this method*/ } public abstract void setCid(java.lang.String cid); public abstract void setCname(java.lang.String cname); public abstract void setCsex(java.lang.String csex); public abstract void setCstuts(java.lang.String cstuts); public abstract void setCnote(java.lang.String cnote); public abstract java.lang.String getCid(); public abstract java.lang.String getCname(); public abstract java.lang.String getCsex(); public abstract java.lang.String getCstuts(); public abstract java.lang.String getCnote(); 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 + =
减小字号Ctrl + -
显示快捷键?