📄 regbmp.java
字号:
/* * Generated by XDoclet - Do not edit! */package cn.edu.zucc.research.ejb.bmp.reg;/** * BMP layer for Reg. * @generated * @lomboz generated */public class RegBMP extends cn.edu.zucc.research.ejb.bmp.reg.RegBean implements javax.ejb.EntityBean{ public boolean isModified() { return dirty; } protected void makeDirty() { dirty = true; } protected void makeClean() { dirty = false; } private boolean dirty = false; public cn.edu.zucc.research.ejb.bmp.reg.RegData getData() { cn.edu.zucc.research.ejb.bmp.reg.RegData dataHolder = null; try { dataHolder = new cn.edu.zucc.research.ejb.bmp.reg.RegData(); } catch (RuntimeException e) { throw new javax.ejb.EJBException(e); } return dataHolder; } public void ejbLoad() { super.ejbLoad(); makeClean(); } public void ejbStore() { if (isModified()) { super.ejbStore(); makeClean(); } } public void ejbActivate() { super.ejbActivate(); } public void ejbPassivate() { super.ejbPassivate(); } public void setEntityContext(javax.ejb.EntityContext ctx) { super.setEntityContext(ctx); } public void unsetEntityContext() { } public void ejbRemove() throws javax.ejb.RemoveException { super.ejbRemove(); } /* Value Objects BEGIN *//* Value Objects END */}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -