?? tbroombean.java~4~
字號:
package com.xc.hotelmanager.hotel.control.entity;import javax.ejb.*;abstract public class TbRoomBean implements EntityBean { EntityContext entityContext; public java.lang.String ejbCreate(java.lang.String roomid) throws CreateException { setRoomid(roomid); return null; } public void ejbPostCreate(java.lang.String roomid) throws CreateException { /**@todo Complete this method*/ } public void ejbRemove() throws RemoveException { /**@todo Complete this method*/ } public abstract void setRoomid(java.lang.String roomid); public abstract void setRstuts(java.lang.String rstuts); public abstract void setRtypeid(java.lang.String rtypeid); public abstract void setTbRoomType(com.xc.hotelmanager.hotel.control.entity.TbRoomType tbRoomType); public abstract java.lang.String getRoomid(); public abstract java.lang.String getRstuts(); public abstract java.lang.String getRtypeid(); public abstract com.xc.hotelmanager.hotel.control.entity.TbRoomType getTbRoomType(); 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 + -